duckling 0.4.3 → 0.4.5

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: 5b3b8caebfebd7361b721ac3806011a9b8092d098e4be4f9de728cdb0ec81aee
4
- data.tar.gz: 191e1a08b50eb6773588e4a2a22ca141d045a4bad1021d4561ba4323c81efb74
3
+ metadata.gz: ab853786365fc9f02739ce2daea095b76176137ac58eef4e12a74b4a6629704a
4
+ data.tar.gz: f590332cd786d94ee13e368034d8bac9785a6fa9a10f5576191ca861867348d4
5
5
  SHA512:
6
- metadata.gz: 24812614d225fde36f369214b6023d954457cda971474602625e46a3ed6167d4433dee9581cfd89bd8b1fddecc759e757222af69cd62686d33cc88720dcc924b
7
- data.tar.gz: 9a0bb8d65c1ff8d0435ce287400f26b1b4de0cf52282f6eb106d31cfb836365bd5026d1e4f27c7879e15db1ab3528149fbbf5b81b42b6aefeb914593d3146903
6
+ metadata.gz: 4da5fbc36957903aeee239b67083573b03b74dc0fc4cf6af0f23252b2677254dadcfe112dd45b3889c941a683ffc9a3465c0eb09242c4e90c3ea4d94bc87fff4
7
+ data.tar.gz: 00bbcce524acac96bdfba51d76157109bc508527140630b8e6953f7861447f9ded9f543a1765f2fb9b302d117b63e1faa3235c35c5f75f1e32efaa0e828fe4f4
data/CHANGELOG.md CHANGED
@@ -6,6 +6,34 @@ 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.4] - 2026-08-13
10
+
11
+ ## What's Changed
12
+ * Benchmark results (github-actions, 0.4.3) by @github-actions[bot] in https://github.com/cpb/duckling/pull/138
13
+ * Update CHANGELOG for v0.4.3 by @github-actions[bot] in https://github.com/cpb/duckling/pull/139
14
+ * Benchmark results (github-actions, 0.4.3) by @cpb in https://github.com/cpb/duckling/pull/141
15
+ * Default bin/worktree harness to Pi; add --pi/--claude/--gemini flags by @cpb in https://github.com/cpb/duckling/pull/142
16
+ * Document Pi as the default bin/worktree harness by @cpb in https://github.com/cpb/duckling/pull/143
17
+ * Skip the CI suite for docs-only PRs by @cpb in https://github.com/cpb/duckling/pull/144
18
+ * Publish release gems to GitHub Packages as well as RubyGems; release 0.4.4 by @cpb in https://github.com/cpb/duckling/pull/145
19
+
20
+
21
+ **Full Changelog**: https://github.com/cpb/duckling/compare/v0.4.3...v0.4.4
22
+
23
+
24
+ ## [0.4.3] - 2026-08-11
25
+
26
+ ## What's Changed
27
+ * Update CHANGELOG for v0.4.2 by @github-actions[bot] in https://github.com/cpb/duckling/pull/134
28
+ * Benchmark results (github-actions, 0.3.0-0.4.2) by @cpb in https://github.com/cpb/duckling/pull/135
29
+ * Bump actions/download-artifact from 7.0.0 to 8.0.1 by @dependabot[bot] in https://github.com/cpb/duckling/pull/116
30
+ * Open release-automation PRs with a PAT so CI runs on them by @cpb in https://github.com/cpb/duckling/pull/136
31
+ * Require MFA for RubyGems operations; release 0.4.3 by @cpb in https://github.com/cpb/duckling/pull/137
32
+
33
+
34
+ **Full Changelog**: https://github.com/cpb/duckling/compare/v0.4.2...v0.4.3
35
+
36
+
9
37
  ## [0.4.2] - 2026-08-11
10
38
 
11
39
  ## 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`/`x86_64-darwin` binary gems, verifies the tag matches `Duckling::VERSION`, builds and publishes the gems (source + both binary platforms) to [rubygems.org](https://rubygems.org), 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) 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`.
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.3"
4
+ VERSION = "0.4.5"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: duckling
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caleb Buxton
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-08-11 00:00:00.000000000 Z
11
+ date: 2026-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rb_sys