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 +4 -4
- data/CHANGELOG.md +10 -0
- data/README.md +1 -1
- data/lib/duckling/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: 407347a9d03b47567d1f8f6724f4c8798eb1852ac6b0aa76c607108ecb502668
|
|
4
|
+
data.tar.gz: a2fb410607b0766112b69638cd39af30cb39b3469f03269f409a5746fead5902
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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)
|
|
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.
|
data/lib/duckling/version.rb
CHANGED