duckling 0.4.6 → 0.4.7

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: 407347a9d03b47567d1f8f6724f4c8798eb1852ac6b0aa76c607108ecb502668
4
- data.tar.gz: a2fb410607b0766112b69638cd39af30cb39b3469f03269f409a5746fead5902
3
+ metadata.gz: a3beb0cbb4c2381acac5a5170bb36cc3a6e266de00481b9ef95d5937ae2fbc50
4
+ data.tar.gz: 9cd21e26d15c2630be54c966662e765b071bd1e24e28fc1471f8cf2a3696a9f9
5
5
  SHA512:
6
- metadata.gz: 1ce0f92fd8ad6856b20930586b08c790c890988b11e1c37bf85aab86a0c0e0927f419c35862f087686f2a868f677dd34b9ec83f6fe87ff42813f11056cfe0570
7
- data.tar.gz: b9a90dc5ebc01ba5552dee230f97091c69ea0f24e33fcd49cedd6e10eeece1444af4ce3c2d603245b9c40ba51e30393004b12eab224990c3bae2357b7c5726e1
6
+ metadata.gz: eddc559b9c0e017dc33f34783e8dc4060e1bceddc501606124987d7012111f571308aa5f2ba08c7d6c4a309749cb97d48d9931caa1a9e936df5caa053dcdc0a7
7
+ data.tar.gz: 0e928df83e3c5f6adad5d6d2f91a1778d40a38c00fc16775cba0a47c0b3e8f086e95fc58687fb4bab247c2cc23ad4537c4af70060d0bd3ba024c3cc93123e892
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.6] - 2026-08-13
10
+
11
+ ## What's Changed
12
+ * Benchmark results (github-actions, 0.4.5) by @cpb in https://github.com/cpb/duckling/pull/148
13
+ * Push only the source gem to GitHub Packages; release 0.4.6 by @cpb in https://github.com/cpb/duckling/pull/149
14
+
15
+
16
+ **Full Changelog**: https://github.com/cpb/duckling/compare/v0.4.5...v0.4.6
17
+
18
+
9
19
  ## [0.4.5] - 2026-08-13
10
20
 
11
21
  ## What's Changed
data/NOTICES ADDED
@@ -0,0 +1,52 @@
1
+ Third-Party Notices
2
+ ===================
3
+
4
+ The duckling gem's native extension (the compiled .bundle/.so — shipped
5
+ precompiled in the platform gems, built at install time from the source
6
+ gem) statically links the third-party component listed below. The gem
7
+ itself remains MIT-licensed (see LICENSE.txt); this file exists because
8
+ the component's BSD-3-Clause license requires binary redistributions to
9
+ reproduce its copyright notice, conditions, and disclaimer in the
10
+ documentation and/or other materials provided with the distribution.
11
+
12
+ Component: duckling (Rust crate)
13
+ Upstream: https://github.com/wafer-inc/duckling
14
+ License: BSD-3-Clause
15
+ Version: as locked in this repository's Cargo.lock
16
+
17
+ The license text below is reproduced verbatim from the component's
18
+ LICENSE file.
19
+
20
+ ---------------------------------------------------------------------------
21
+
22
+ BSD License
23
+
24
+ For Duckling software
25
+
26
+ Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
27
+ Rust port copyright (c) 2024-present, contributors.
28
+
29
+ Redistribution and use in source and binary forms, with or without modification,
30
+ are permitted provided that the following conditions are met:
31
+
32
+ * Redistributions of source code must retain the above copyright notice, this
33
+ list of conditions and the following disclaimer.
34
+
35
+ * Redistributions in binary form must reproduce the above copyright notice,
36
+ this list of conditions and the following disclaimer in the documentation
37
+ and/or other materials provided with the distribution.
38
+
39
+ * Neither the name Facebook nor the names of its contributors may be used to
40
+ endorse or promote products derived from this software without specific
41
+ prior written permission.
42
+
43
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
44
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
45
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
46
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
47
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
48
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
49
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
50
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
51
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
52
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/README.md CHANGED
@@ -246,6 +246,8 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/cpb/du
246
246
 
247
247
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
248
248
 
249
+ The native extension statically links the [duckling](https://github.com/wafer-inc/duckling) Rust crate (a Rust port of Facebook's Duckling), which is licensed under the BSD 3-Clause License. Its copyright notice and disclaimer are reproduced in [NOTICES](NOTICES), as that license requires of binary redistributions.
250
+
249
251
  ## Code of Conduct
250
252
 
251
253
  Everyone interacting in the Duckling project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/cpb/duckling/blob/master/CODE_OF_CONDUCT.md).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Duckling
4
- VERSION = "0.4.6"
4
+ VERSION = "0.4.7"
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.6
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caleb Buxton
@@ -94,6 +94,7 @@ files:
94
94
  - Cargo.lock
95
95
  - Cargo.toml
96
96
  - LICENSE.txt
97
+ - NOTICES
97
98
  - README.md
98
99
  - Rakefile
99
100
  - docs/2026-07-01-roadmap.md