philiprehberger-http_client 0.11.0 → 0.11.1

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: 0e7ebec429195d4e674adf7836c916e2e9fa40938c1fe79209d8c10ad4c0df5d
4
- data.tar.gz: 94fd543943abe6573cb5ce9bdc686bc5c7aa79858b312aab251a4851c4f9718f
3
+ metadata.gz: 5438d46ef6a929e6272a230dc19c64a50ff6c183b96cbec03b6379f1dec476df
4
+ data.tar.gz: 256673e0413568cfaafc4a4fbbba15d0fbdffe60c0aca1d22090909c2db24a16
5
5
  SHA512:
6
- metadata.gz: ba7e2ba9e18a068391353b8164393deb5205faa86367fffb1101b782ca08e72d1db2c8eecf8343621062b61629268c09254c9a597d333da59657979903090882
7
- data.tar.gz: 2ab2ebe6ab143e5417e7939905c9b971bce1237cf434f0d4a360f912ab02d37468affa783368297ed11e1de44689847239a55f9fbd7e51864c9ba7ec6be595fa
6
+ metadata.gz: fb20cd1a0bd5020afc0e519d6b02ae078fa19266ae829f201baf607b8b4b8dce1e1bdd73d80110739dbd04b2d8bcdc9e235b64ad9ed528be0efcecb9a8e52e54
7
+ data.tar.gz: 81e1cdcef88ee36d4a585bd8ae6f190e61641ae0f7575b416dca40abbe389aadc4bdd7cf4a632a3778bb580333422cdbf7338f1afb268a225ee8c26767609f8e
data/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.11.1] - 2026-06-14
11
+
12
+ ### Changed
13
+ - Added package card image to README
14
+ - Cleaned up Installation section formatting
15
+
10
16
  ## [0.11.0] - 2026-05-13
11
17
 
12
18
  ### Added
@@ -194,7 +200,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
194
200
  - Response wrapper with `ok?` and `json` convenience methods
195
201
  - Zero dependencies — built on Ruby stdlib `net/http`
196
202
 
197
- [Unreleased]: https://github.com/philiprehberger/rb-http-client/compare/v0.11.0...HEAD
203
+ [Unreleased]: https://github.com/philiprehberger/rb-http-client/compare/v0.11.1...HEAD
204
+ [0.11.1]: https://github.com/philiprehberger/rb-http-client/compare/v0.11.0...v0.11.1
198
205
  [0.11.0]: https://github.com/philiprehberger/rb-http-client/compare/v0.10.0...v0.11.0
199
206
  [0.10.0]: https://github.com/philiprehberger/rb-http-client/compare/v0.9.1...v0.10.0
200
207
  [0.9.1]: https://github.com/philiprehberger/rb-http-client/compare/v0.9.0...v0.9.1
data/README.md CHANGED
@@ -4,6 +4,8 @@
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-http_client.svg)](https://rubygems.org/gems/philiprehberger-http_client)
5
5
  [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-http-client)](https://github.com/philiprehberger/rb-http-client/commits/main)
6
6
 
7
+ ![philiprehberger-http_client](https://raw.githubusercontent.com/philiprehberger/rb-http-client/main/package-card.webp)
8
+
7
9
  Lightweight HTTP client wrapper with retries and interceptors
8
10
 
9
11
  ## Requirements
@@ -18,12 +20,6 @@ Add to your Gemfile:
18
20
  gem "philiprehberger-http_client"
19
21
  ```
20
22
 
21
- Then run:
22
-
23
- ```bash
24
- bundle install
25
- ```
26
-
27
23
  Or install directly:
28
24
 
29
25
  ```bash
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module HttpClient
5
- VERSION = '0.11.0'
5
+ VERSION = '0.11.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-http_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
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-05-14 00:00:00.000000000 Z
11
+ date: 2026-06-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A zero-dependency HTTP client built on Ruby's net/http with automatic
14
14
  retries, request/response interceptors, and a clean API for JSON services.