sink-cool 0.1.0 → 0.1.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 +18 -8
- data/lib/sink/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: 1b80f9d22b726100b1e3e5b1ee1dd8db7e4de9bd154a33cfb42c2797333d1b8b
|
|
4
|
+
data.tar.gz: b7f8f0dab846a2f53bc5aa5704a6408c7a7c496276c9a60a1335fbb127e2829e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50c9749e0271c7d9dcc870f515e773b352355db3e347b7e7d5a609cd21a36525f2a2ef86c57686ca4883dc69da845a2c6cd110da2bf219ca61d87a20bd91a023
|
|
7
|
+
data.tar.gz: e364f3d9217a4bbeeced34575d509b0699ffbbba93150fb0a15f6f989094c4a10ba4a038ff4ec99b0c4483878c3e03d0b3cf9ad218a757c4618bf34956a2c3a8
|
data/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,26 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 0.1.2 - 2026-07-23
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Grant the release workflow write access so gems reach GitHub Packages.
|
|
12
|
+
- Make the release workflow idempotent, skipping RubyGems and GitHub Packages pushes for versions that already exist.
|
|
13
|
+
|
|
14
|
+
## 0.1.1 - 2026-07-23
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- Avoid false release failures while RubyGems propagates its full index.
|
|
19
|
+
|
|
20
|
+
## 0.1.0 - 2026-07-23
|
|
21
|
+
|
|
7
22
|
### Added
|
|
8
23
|
|
|
24
|
+
- Global configuration for the Sink base URL, site token, and HTTP timeouts.
|
|
25
|
+
- Client methods for authentication, link management, search, tags, and link checks.
|
|
26
|
+
- Structured `Sink::Error` exceptions for unsuccessful API responses.
|
|
9
27
|
- GitHub Actions workflows for CI and trusted publishing to RubyGems.org.
|
|
10
28
|
- MIT License.
|
|
11
29
|
- RubyGems project metadata.
|
|
@@ -16,11 +34,3 @@ All notable changes to this project will be documented in this file.
|
|
|
16
34
|
- Publish version tags to RubyGems.org, GitHub Packages, and GitHub Releases after running the full Ruby version matrix.
|
|
17
35
|
- Make global client initialization thread-safe.
|
|
18
36
|
- Isolate HTTP transport in tests without patching `Net::HTTP` globally.
|
|
19
|
-
|
|
20
|
-
## 0.1.0 - 2026-07-23
|
|
21
|
-
|
|
22
|
-
### Added
|
|
23
|
-
|
|
24
|
-
- Global configuration for the Sink base URL, site token, and HTTP timeouts.
|
|
25
|
-
- Client methods for authentication, link management, search, tags, and link checks.
|
|
26
|
-
- Structured `Sink::Error` exceptions for unsuccessful API responses.
|
data/lib/sink/version.rb
CHANGED