quonfig 0.0.2 → 0.0.3

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: 6e8e728d81d4870daabc72a78a69e5f8b3f990fbc168d59cd547b240f150d712
4
- data.tar.gz: 627a0d2b3b6c9d7ade79a5d44a213d72e2b21ff09f80a4c67b3ee6aec77741f5
3
+ metadata.gz: c01dc43b0b300e6f30cd2fad53305feee0cd74229ade2073b44f86777c6c2096
4
+ data.tar.gz: c7b2191829af4e7b7e72ea36da7a4af6a7a7fb176323ee59a1c1515c4a68c25a
5
5
  SHA512:
6
- metadata.gz: ba05469db1692fad2c3c778e8e150b7d929b755c77a85e31e393f9d3c52b8d6e0db0ea537381ea2829f0d219d39f4166adf6341c9035fae5af8639de2fdf8b30
7
- data.tar.gz: 5ee24f2df153046ce6442e9f7cb7494f0ebf45a30a551b6359324679139fb05252bf196890e155eac0bcb5a0d3a4e760d430e0b88c2db94a348fc09b739c1de8
6
+ metadata.gz: bae99227268f0fb192a398f1b3c7256a7d0a7d4c8aa35208ab6125569dfe95d4af05ee94048ac8dbc662415bd1a07b3ed5c6c86f5d6e75c6919d876538e726f4
7
+ data.tar.gz: 720a3628d4bbdd75ee432a1ae0d62beccc42b79f95c9afd21ea22a28d815296275e1c2a921b22a45e713934e28fe5d7e2136fedee06f71cbfb41ec2255792033
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.0.3 - 2026-04-22
4
+
5
+ - **Release plumbing only** — no functional changes. Renames the release
6
+ workflow from `push_gem.yml` to `release.yml` to match the Trusted
7
+ Publisher record on rubygems.org, and restores the dynamic
8
+ `s.version = File.read("VERSION")` pattern in the gemspec so future
9
+ version bumps are a one-line VERSION edit (Juwelier's regen had
10
+ hardcoded it). First publish via the automated trusted-publishing flow.
11
+
3
12
  ## 0.0.2 - 2026-04-22
4
13
 
5
14
  - **Fix:** SSE client now connects to `/api/v2/sse/config` to match the server route and other Quonfig SDKs (was `/api/v2/sse`, which would have failed at runtime against api-delivery). (qfg-uq8)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
data/quonfig.gemspec CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "quonfig".freeze
9
- s.version = "0.0.2".freeze
9
+ s.version = File.read(File.expand_path("VERSION", __dir__)).strip
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
27
27
  ".envrc.sample",
28
28
  ".github/CODEOWNERS",
29
29
  ".github/pull_request_template.md",
30
- ".github/workflows/push_gem.yml",
30
+ ".github/workflows/release.yml",
31
31
  ".github/workflows/ruby.yml",
32
32
  ".github/workflows/test.yaml",
33
33
  ".rubocop.yml",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quonfig
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Dwyer
@@ -186,7 +186,7 @@ files:
186
186
  - ".envrc.sample"
187
187
  - ".github/CODEOWNERS"
188
188
  - ".github/pull_request_template.md"
189
- - ".github/workflows/push_gem.yml"
189
+ - ".github/workflows/release.yml"
190
190
  - ".github/workflows/ruby.yml"
191
191
  - ".github/workflows/test.yaml"
192
192
  - ".rubocop.yml"
File without changes