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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40ebcfe134b5d646125ece2818fa878973b3d6a2919e184d8374b297c4af23dc
4
- data.tar.gz: 180069d73c79f6a00de9be8953d293448908bb2f2b51120aecac82595d704663
3
+ metadata.gz: cb6f9448eb54f6b7d540f0fbce8e867316e559c7b65f0c4f22d25d2380a1d913
4
+ data.tar.gz: 504733ba0b309f42dd95a7a79de9113b5caac7d84172d9e2b239e467b366c335
5
5
  SHA512:
6
- metadata.gz: 072da0185c1b9178d91d35ddb415c6ac652504a7ae1997ad1182810fe84c401a1694f15ae77bc73ed2fb190182b8166467b28a28ceb0e030966b8e37d01c76bb
7
- data.tar.gz: 56ecac6dc04861909d900a2b02528cfef929523853d87ba738f3f499766e827d1ddd5dcc745ad2e45acbccdbd2254624e5029d41f6795b901221568fa9358cff
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
  [![Tests](https://github.com/philiprehberger/rb-retry-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-retry-kit/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-retry_kit.svg)](https://rubygems.org/gems/philiprehberger-retry_kit)
5
+ [![License](https://img.shields.io/github/license/philiprehberger/rb-retry-kit)](LICENSE)
5
6
 
6
7
  Retry with exponential backoff, jitter, and circuit breaker for resilient Ruby applications.
7
8
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module RetryKit
5
- VERSION = "0.2.0"
5
+ VERSION = "0.2.2"
6
6
  end
7
7
  end
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.0
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-13 00:00:00.000000000 Z
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