duckling 0.4.3 → 0.4.4
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 +13 -0
- data/README.md +1 -1
- data/lib/duckling/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2445389f0349a2ef2e9b7068eb5b79cac00cef7003fe74f6ec4c5a4a5284e0e7
|
|
4
|
+
data.tar.gz: f9cd93e89891880b56d0d470ef7e41b4c90e913c739e4db26673a66187f9e79b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 955249a9329cbce09c482b1e141b43da18c787b6f3a84468238ac7932e5ad9245b8467f922d2067b21b8a3b686fc42f40a8c287ab33465e8dd7a8522b715f424
|
|
7
|
+
data.tar.gz: df16608a1d40526040776f1edff639a974f7a5991255fc65821e59f224902bce369d82fc28411a6c47e31248071e1c91f26969d970837c64a4839f3027b00265
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,19 @@ 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.3] - 2026-08-11
|
|
10
|
+
|
|
11
|
+
## What's Changed
|
|
12
|
+
* Update CHANGELOG for v0.4.2 by @github-actions[bot] in https://github.com/cpb/duckling/pull/134
|
|
13
|
+
* Benchmark results (github-actions, 0.3.0-0.4.2) by @cpb in https://github.com/cpb/duckling/pull/135
|
|
14
|
+
* Bump actions/download-artifact from 7.0.0 to 8.0.1 by @dependabot[bot] in https://github.com/cpb/duckling/pull/116
|
|
15
|
+
* Open release-automation PRs with a PAT so CI runs on them by @cpb in https://github.com/cpb/duckling/pull/136
|
|
16
|
+
* Require MFA for RubyGems operations; release 0.4.3 by @cpb in https://github.com/cpb/duckling/pull/137
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
**Full Changelog**: https://github.com/cpb/duckling/compare/v0.4.2...v0.4.3
|
|
20
|
+
|
|
21
|
+
|
|
9
22
|
## [0.4.2] - 2026-08-11
|
|
10
23
|
|
|
11
24
|
## 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 +
|
|
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.
|
data/lib/duckling/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.4.4
|
|
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
|
+
date: 2026-08-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rb_sys
|