philiprehberger-retry_kit 0.2.0 → 0.2.2
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 +4 -4
- data/CHANGELOG.md +10 -0
- data/README.md +1 -0
- data/lib/philiprehberger/retry_kit/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb6f9448eb54f6b7d540f0fbce8e867316e559c7b65f0c4f22d25d2380a1d913
|
|
4
|
+
data.tar.gz: 504733ba0b309f42dd95a7a79de9113b5caac7d84172d9e2b239e467b366c335
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f49a0afb554d1142b0372c1da8fa1c0165cdbefe538b6af73987c1aeecc35a3c2725e6fd5f7272dd1091b46e48ee0b23f0f09c5dd70d24bced6ab49bf61a3d5
|
|
7
|
+
data.tar.gz: e75f35e7fc516765fee442e48119b00e5f6e1395a98b0edd3b3d152004ff65e9411a8efac276c4c1c44ad2c71b3160c568031ad7169ea627f55bc34fa895789b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
- Add License badge to README
|
|
6
|
+
- Add bug_tracker_uri to gemspec
|
|
7
|
+
|
|
3
8
|
All notable changes to this gem will be documented in this file.
|
|
4
9
|
|
|
5
10
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
@@ -7,6 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
12
|
|
|
8
13
|
## [Unreleased]
|
|
9
14
|
|
|
15
|
+
## [0.2.1] - 2026-03-12
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Re-release with no code changes (RubyGems publish fix)
|
|
19
|
+
|
|
10
20
|
## [0.2.0] - 2026-03-12
|
|
11
21
|
|
|
12
22
|
### Added
|
data/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/philiprehberger/rb-retry-kit/actions/workflows/ci.yml)
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-retry_kit)
|
|
5
|
+
[](LICENSE)
|
|
5
6
|
|
|
6
7
|
Retry with exponential backoff, jitter, and circuit breaker for resilient Ruby applications.
|
|
7
8
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-retry_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philip Rehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A lightweight retry library with exponential/linear/constant backoff,
|
|
14
14
|
configurable jitter strategies, and an optional circuit breaker for resilient Ruby
|