duckling 0.4.5 → 0.4.6

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: ab853786365fc9f02739ce2daea095b76176137ac58eef4e12a74b4a6629704a
4
- data.tar.gz: f590332cd786d94ee13e368034d8bac9785a6fa9a10f5576191ca861867348d4
3
+ metadata.gz: 407347a9d03b47567d1f8f6724f4c8798eb1852ac6b0aa76c607108ecb502668
4
+ data.tar.gz: a2fb410607b0766112b69638cd39af30cb39b3469f03269f409a5746fead5902
5
5
  SHA512:
6
- metadata.gz: 4da5fbc36957903aeee239b67083573b03b74dc0fc4cf6af0f23252b2677254dadcfe112dd45b3889c941a683ffc9a3465c0eb09242c4e90c3ea4d94bc87fff4
7
- data.tar.gz: 00bbcce524acac96bdfba51d76157109bc508527140630b8e6953f7861447f9ded9f543a1765f2fb9b302d117b63e1faa3235c35c5f75f1e32efaa0e828fe4f4
6
+ metadata.gz: 1ce0f92fd8ad6856b20930586b08c790c890988b11e1c37bf85aab86a0c0e0927f419c35862f087686f2a868f677dd34b9ec83f6fe87ff42813f11056cfe0570
7
+ data.tar.gz: b9a90dc5ebc01ba5552dee230f97091c69ea0f24e33fcd49cedd6e10eeece1444af4ce3c2d603245b9c40ba51e30393004b12eab224990c3bae2357b7c5726e1
data/CHANGELOG.md CHANGED
@@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.4.5] - 2026-08-13
10
+
11
+ ## What's Changed
12
+ * Benchmark results (github-actions, 0.4.4) by @github-actions[bot] in https://github.com/cpb/duckling/pull/146
13
+ * Fix release-time credential wiring; release 0.4.5 by @cpb in https://github.com/cpb/duckling/pull/147
14
+
15
+
16
+ **Full Changelog**: https://github.com/cpb/duckling/compare/v0.4.4...v0.4.5
17
+
18
+
9
19
  ## [0.4.4] - 2026-08-13
10
20
 
11
21
  ## What's Changed
data/README.md CHANGED
@@ -223,7 +223,7 @@ edit `.env.local` to opt back into a release-profile local build, or run
223
223
  `bundle exec rake dev compile test` for a one-off dev-profile build without
224
224
  `.env.local` in place.
225
225
 
226
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version: bump `Duckling::VERSION` in `version.rb`, merge that change to `main`, then run `bundle exec rake release` (or push a matching `vX.Y.Z` tag directly) to create and push the git tag. Pushing the tag triggers a GitHub Actions pipeline that re-runs CI as a gate, cross-compiles `x86_64-linux`/`aarch64-linux`/`x86_64-darwin`/`arm64-darwin` binary gems, verifies the tag matches `Duckling::VERSION`, builds and publishes the gems (source + one binary gem per platform) to [rubygems.org](https://rubygems.org) and the [GitHub Packages RubyGems registry](https://rubygems.pkg.github.com/cpb), cuts a GitHub release, and opens a PR appending an entry to `CHANGELOG.md`.
226
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version: bump `Duckling::VERSION` in `version.rb`, merge that change to `main`, then run `bundle exec rake release` (or push a matching `vX.Y.Z` tag directly) to create and push the git tag. Pushing the tag triggers a GitHub Actions pipeline that re-runs CI as a gate, cross-compiles `x86_64-linux`/`aarch64-linux`/`x86_64-darwin`/`arm64-darwin` binary gems, verifies the tag matches `Duckling::VERSION`, builds and publishes the gems (source + one binary gem per platform) to [rubygems.org](https://rubygems.org) plus the source gem to the [GitHub Packages RubyGems registry](https://rubygems.pkg.github.com/cpb) (which keys uniqueness on name+version and so cannot hold the platform gems), cuts a GitHub release, and opens a PR appending an entry to `CHANGELOG.md`.
227
227
 
228
228
  `bin/benchmark` (or `bundle exec rake benchmark`) runs the `benchmark-ips`
229
229
  suite locally and prints results to the console — no files written.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Duckling
4
- VERSION = "0.4.5"
4
+ VERSION = "0.4.6"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: duckling
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.5
4
+ version: 0.4.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caleb Buxton