http-retry-after 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5cba00245cea0af17f0af45b2fed6bf791ffc0fc0ece1d63174fdd0b4f9bd21b
4
- data.tar.gz: 12520273c74bbf845c3b050e00aed56162bdb9ee76017fff94eff788686847a3
3
+ metadata.gz: f3070a68f7f052be109840a338fcd16c8d6fb046831ee21be97871f55fd9f5de
4
+ data.tar.gz: 5733bd2162ad3734075dcf1e38bb91d94ddf1c5fd43079fcd289ae57a40f8b4a
5
5
  SHA512:
6
- metadata.gz: 9af7b8a8975f9d7fa2996d9f40f2870ef2e903ab5bec3d23940230196145800a3188b0d9d8bc6decd712be16ad26206682e3984e089e18f1fa1c759109f73d90
7
- data.tar.gz: 866dc47b25b8609c834265434b75990ef4c401ce952a22af1dfcfafbe323dd523bb4f871e86d9b80ed490ada34d454259257e00ae25197813616fff5a95299e6
6
+ metadata.gz: 021d5f81247a17b106400d1eb5c1eb50cc416c2735be6dec7c376d6a79b114645a470aa8b5843b9a7f1e964d0058ced3ea149123ded37c57ca46b688ad9dd849
7
+ data.tar.gz: f279c2ac31b05ad8468188d7d9cafb7d52b932b3dc1cd46c678cf4129660d4ea4f5415e189a0801f7d835883920bce90e0603324691b8e52e89c4136b6b3518a
@@ -11,7 +11,7 @@ jobs:
11
11
  strategy:
12
12
  fail-fast: false
13
13
  matrix:
14
- ruby: ["3.1", "3.2", "3.3", "3.4"]
14
+ ruby: ["3.2", "3.3", "3.4", "4.0"]
15
15
 
16
16
  steps:
17
17
  - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
@@ -17,8 +17,6 @@ jobs:
17
17
  steps:
18
18
  - id: release
19
19
  uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4.4.0
20
- with:
21
- release-type: ruby
22
20
  deploy:
23
21
  runs-on: ubuntu-latest
24
22
  needs:
@@ -32,4 +30,4 @@ jobs:
32
30
  - run: gem build http-retry-after.gemspec
33
31
  - run: gem push pkg/http-retry-after-*.gem
34
32
  env:
35
- RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
33
+ GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.2.0"
3
+ }
data/AGENTS.md CHANGED
@@ -29,7 +29,7 @@
29
29
  ## Commit and Pull Request
30
30
 
31
31
  - Commit style mirrors current history: Conventional Commits-like prefixes (`feat|fix|chore|docs: ...`) with issue numbers `(#123)` when relevant.
32
- - PRs: include summary, motivation, key changes, and test results as bullets. Update `CHANGELOG.md` for user-visible changes.
32
+ - PRs: include summary, motivation, key changes, and test results as bullets. `CHANGELOG.md` is auto-updated; do not edit it manually.
33
33
  - Keep one concern per PR, ensure Rake tests pass, and attach repro steps or screenshots only when helpful.
34
34
 
35
35
  ## Security and Maintenance
data/CHANGELOG.md CHANGED
@@ -2,18 +2,21 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [0.1.1](https://github.com/kudoas/http-retry-after/compare/v0.1.0...v0.1.1) (2026-01-02)
5
+ ## [0.2.0](https://github.com/kudoas/http-retry-after/compare/v0.1.1...v0.2.0) (2026-01-03)
6
6
 
7
7
 
8
- ### Bug Fixes
8
+ ### Features
9
9
 
10
- * improve error handling in parse_seconds and parse_http_date methods ([#4](https://github.com/kudoas/http-retry-after/issues/4)) ([558c11b](https://github.com/kudoas/http-retry-after/commit/558c11b81f04bb9184bd1678b4c20d819c05d6e7))
10
+ * update CI Ruby version matrix and modify CHANGELOG formatting ([#15](https://github.com/kudoas/http-retry-after/issues/15)) ([3b3b05c](https://github.com/kudoas/http-retry-after/commit/3b3b05c36e0e1073171bd40dde2d7a730f32d790))
11
+ * update required Ruby version to 3.1 in gemspec ([#17](https://github.com/kudoas/http-retry-after/issues/17)) ([f85b32c](https://github.com/kudoas/http-retry-after/commit/f85b32ce7f9192e736362db2cc66f30f636d3736))
11
12
 
12
- ## [Unreleased]
13
+ ## [0.1.1](https://github.com/kudoas/http-retry-after/compare/v0.1.0...v0.1.1) (2026-01-02)
14
+
15
+ ### Bug Fixes
13
16
 
14
- - No changes yet.
17
+ - improve error handling in parse_seconds and parse_http_date methods ([#4](https://github.com/kudoas/http-retry-after/issues/4)) ([558c11b](https://github.com/kudoas/http-retry-after/commit/558c11b81f04bb9184bd1678b4c20d819c05d6e7))
15
18
 
16
- ## [0.1.0]
19
+ ## 0.1.0
17
20
 
18
21
  ### Added
19
22
 
data/Gemfile CHANGED
@@ -7,5 +7,5 @@ gemspec
7
7
  group :development, :test do
8
8
  gem "bundler", ">= 2.0"
9
9
  gem "rake"
10
- gem "minitest", "~> 5.0"
10
+ gem "minitest", "~> 6.0"
11
11
  end
data/Gemfile.lock CHANGED
@@ -1,12 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- http-retry-after (0.1.0)
4
+ http-retry-after (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- minitest (5.27.0)
9
+ minitest (6.0.1)
10
+ prism (~> 1.5)
11
+ prism (1.7.0)
10
12
  rake (13.3.1)
11
13
 
12
14
  PLATFORMS
@@ -16,7 +18,7 @@ PLATFORMS
16
18
  DEPENDENCIES
17
19
  bundler (>= 2.0)
18
20
  http-retry-after!
19
- minitest (~> 5.0)
21
+ minitest (~> 6.0)
20
22
  rake
21
23
 
22
24
  BUNDLED WITH
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
16
16
  spec.metadata["source_code_uri"] = spec.homepage
17
17
  spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
18
18
 
19
- spec.required_ruby_version = ">= 3.0"
19
+ spec.required_ruby_version = ">= 3.1"
20
20
 
21
21
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
22
22
  `git ls-files -z`.split("\x0")
@@ -2,6 +2,6 @@
2
2
 
3
3
  module HTTP
4
4
  module RetryAfter
5
- VERSION = "0.1.1"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
@@ -0,0 +1,9 @@
1
+ {
2
+ "packages": {
3
+ ".": {
4
+ "release-type": "ruby",
5
+ "version-file": "lib/http/retry_after/version.rb",
6
+ "changelog-path": "CHANGELOG.md"
7
+ }
8
+ }
9
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: http-retry-after
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daichi KUDO
@@ -21,6 +21,7 @@ files:
21
21
  - ".github/workflows/ci.yml"
22
22
  - ".github/workflows/release-please.yml"
23
23
  - ".gitignore"
24
+ - ".release-please-manifest.json"
24
25
  - AGENTS.md
25
26
  - CHANGELOG.md
26
27
  - Gemfile
@@ -32,6 +33,7 @@ files:
32
33
  - lib/http-retry-after.rb
33
34
  - lib/http/retry_after.rb
34
35
  - lib/http/retry_after/version.rb
36
+ - release-please-config.json
35
37
  - renovate.json
36
38
  - test/http_retry_after_test.rb
37
39
  - test/test_helper.rb
@@ -48,7 +50,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
48
50
  requirements:
49
51
  - - ">="
50
52
  - !ruby/object:Gem::Version
51
- version: '3.0'
53
+ version: '3.1'
52
54
  required_rubygems_version: !ruby/object:Gem::Requirement
53
55
  requirements:
54
56
  - - ">="