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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +18 -8
  3. data/lib/sink/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a00d2c68180f646548d25323730f7e93b9ba05304714a2a00964cc7d3891b747
4
- data.tar.gz: 3f5976058e5efe20ffbdc8b5abbc189c5419a56881584b17bb51cf8fa37d5e52
3
+ metadata.gz: 1b80f9d22b726100b1e3e5b1ee1dd8db7e4de9bd154a33cfb42c2797333d1b8b
4
+ data.tar.gz: b7f8f0dab846a2f53bc5aa5704a6408c7a7c496276c9a60a1335fbb127e2829e
5
5
  SHA512:
6
- metadata.gz: f8265250d9c8a378c24e2ea0da1fd811caf2d09f81dbf08950741c0b3dbf297013dd25fbd701607588c4262fa1fea39161a92e72b91d48dbd10b314b7d8047a5
7
- data.tar.gz: 2af5d5bf19381bbd9ef3708f2f6621f9c076c7d4cb53da6255466d36f176e027e5d2655204116d487f58d0792b155a6b5f50e459b7a4cb09be3952159596280c
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Sink
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sink-cool
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sink Ruby contributors