http.rb 0.26.0 → 1.0.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 +4 -4
- data/CHANGELOG +9 -0
- data/lib/HTTP/VERSION.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c6cf64d373fd047e68f56e4d612f0aa7569c69e183dde7057c7cef706861d7b0
|
|
4
|
+
data.tar.gz: e817f97f6747c05c492823dfeea938f45db80fc77fb2ef5adb93e69818a12faa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 466fadc13d04a2333864c0e2c5337454bb6010293f86346d9a8d8ea06f4e577952a3451eb16997f6723882ca4fe8f598784c1675698b56a3f1594a2a39781f0a
|
|
7
|
+
data.tar.gz: f52d5e6362127c020091e1d8b2317ad909edf1f3a36e4341f8dba1d8ba92a358ff9fab206eb7e276d7e4e670db7e9af55b885ae9e54224d94d05b6d9563f7d84
|
data/CHANGELOG
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## 20260522
|
|
4
4
|
|
|
5
|
+
1.0.0: API stability declaration.
|
|
6
|
+
|
|
7
|
+
The verb interface (HTTP.get, HTTP.post, HTTP.put, HTTP.delete, HTTP.head, HTTP.options, HTTP.patch, HTTP.trace), the options hash, the redirect handling, the response predicates, and the retry configuration have been stable in shape for several releases. This release declares that commitment publicly: from here, any breaking change requires a major version bump.
|
|
8
|
+
|
|
9
|
+
1. ~ HTTP::VERSION: /0.26.0/1.0.0/
|
|
10
|
+
2. ~ CHANGELOG: + 1.0.0 entry
|
|
11
|
+
|
|
12
|
+
## 20260522
|
|
13
|
+
|
|
5
14
|
0.26.0: Documentation and housekeeping polish before 1.0.
|
|
6
15
|
|
|
7
16
|
1. ~ README.md: Opening blurb now lists all supported verbs (get, head, options, trace, post, put, patch, delete) rather than claiming only GET/POST support.
|
data/lib/HTTP/VERSION.rb
CHANGED