From 9c38c6e0b9db77cff732ba3d55f08d866f43e75f Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Fri, 20 Jun 2025 15:04:55 -0400 Subject: [PATCH 1/4] Require HTTP.jl v1.10.17 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 5a55aa4..95a533d 100644 --- a/Project.toml +++ b/Project.toml @@ -13,7 +13,7 @@ SodiumSeal = "2133526b-2bfb-4018-ac12-889fb3908a75" URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" [compat] -HTTP = "0.9, 1" +HTTP = "1.10.17" # Must be >= 1.10.17, see https://github.com/JuliaWeb/GitHub.jl/pull/225 URIs = "1.1" JSON = "0.19, 0.20, 0.21" MbedTLS = "0.6, 0.7, 1" From 55cf465062580a0cbd781f24d1bbc75fd75be33f Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Fri, 20 Jun 2025 16:03:56 -0400 Subject: [PATCH 2/4] Require URIs v1.6.0 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 95a533d..20f943b 100644 --- a/Project.toml +++ b/Project.toml @@ -14,7 +14,7 @@ URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" [compat] HTTP = "1.10.17" # Must be >= 1.10.17, see https://github.com/JuliaWeb/GitHub.jl/pull/225 -URIs = "1.1" +URIs = "1.6" # Must be >= 1.6, see https://github.com/JuliaWeb/GitHub.jl/pull/225 JSON = "0.19, 0.20, 0.21" MbedTLS = "0.6, 0.7, 1" SodiumSeal = "0.1" From 59f5129d9c79f0f3b26c33884a7ac05e080ddfa5 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Fri, 20 Jun 2025 15:30:33 -0400 Subject: [PATCH 3/4] Bump the minor version number (GitHub.jl 5.9.1 --> 5.10.0) --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 20f943b..8f3d753 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "GitHub" uuid = "bc5e4493-9b4d-5f90-b8aa-2b2bcaad7a26" -version = "5.9.1" +version = "5.10.0" [deps] Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" From 2b9051c415f682c1513100e582cd0a3b1269ea5f Mon Sep 17 00:00:00 2001 From: Avik Sengupta <378918+aviks@users.noreply.github.com> Date: Sat, 21 Jun 2025 10:58:48 +0100 Subject: [PATCH 4/4] do not support julia 1.0 any more. 1.6+ only --- .github/workflows/ci.yml | 2 +- Project.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23166b2..d35bd1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: version: - - '1.0' + - '1.6' - '1' # automatically expands to the latest stable 1.x release of Julia. - 'nightly' os: diff --git a/Project.toml b/Project.toml index 8f3d753..549869d 100644 --- a/Project.toml +++ b/Project.toml @@ -18,7 +18,7 @@ URIs = "1.6" # Must be >= 1.6, see https://github.com/JuliaWeb/GitHub.jl/pull/2 JSON = "0.19, 0.20, 0.21" MbedTLS = "0.6, 0.7, 1" SodiumSeal = "0.1" -julia = "0.7, 1" +julia = "1.6" [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"