redact_ner 0.1.1-x86_64-linux → 0.1.2-x86_64-linux
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 +14 -1
- data/README.md +15 -21
- data/lib/redact_ner/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: 0ab24e19a57687e852719639de59d10ce6ccd9aab1b573d27525890c377ae869
|
|
4
|
+
data.tar.gz: f7b73d0acad37cb075c7e11f00684ee928105e4e2548ba4a0cc91e76047d9aa2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d5e4b7429c5970ba3b54d32d795f2164255f291f4066c1d4a447e3fc5bfcc9ba750056392d029d517a27bd9e94f94bf985d19efcd61de1694da35f2c482de2c
|
|
7
|
+
data.tar.gz: 7c2e0a42672c78c344ed448f867becaca391f711cca3ae5d2dd9040f809499e885dfa8392bc3ee629c6a09c2a4050bd6d88fd1e3de79bd8da6fd66a97bec6c3e
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.2] - 2026-05-17
|
|
11
|
+
|
|
12
|
+
## What's Changed
|
|
13
|
+
* Automate release prep: version bump, CHANGELOG, draft GitHub Release by @mitsuru in https://github.com/mitsuru/redact-ner-ruby/pull/1
|
|
14
|
+
* Use a GitHub App token instead of RELEASE_PAT for release automation by @mitsuru in https://github.com/mitsuru/redact-ner-ruby/pull/2
|
|
15
|
+
|
|
16
|
+
## New Contributors
|
|
17
|
+
* @mitsuru made their first contribution in https://github.com/mitsuru/redact-ner-ruby/pull/1
|
|
18
|
+
|
|
19
|
+
**Full Changelog**: https://github.com/mitsuru/redact-ner-ruby/compare/v0.1.1...v0.1.2
|
|
20
|
+
|
|
21
|
+
|
|
10
22
|
## [0.1.1] - 2026-05-17
|
|
11
23
|
|
|
12
24
|
### Changed
|
|
@@ -40,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
40
52
|
- The precompiled musl gems (Alpine / distroless) link `libstdc++`
|
|
41
53
|
dynamically; install it at runtime, e.g. `apk add --no-cache libstdc++`.
|
|
42
54
|
|
|
43
|
-
[Unreleased]: https://github.com/mitsuru/redact-ner-ruby/compare/v0.1.
|
|
55
|
+
[Unreleased]: https://github.com/mitsuru/redact-ner-ruby/compare/v0.1.2...HEAD
|
|
44
56
|
[0.1.1]: https://github.com/mitsuru/redact-ner-ruby/releases/tag/v0.1.1
|
|
45
57
|
[0.1.0]: https://github.com/mitsuru/redact-ner-ruby/releases/tag/v0.1.0
|
|
58
|
+
[0.1.2]: https://github.com/mitsuru/redact-ner-ruby/releases/tag/v0.1.2
|
data/README.md
CHANGED
|
@@ -120,27 +120,21 @@ bin/rake test
|
|
|
120
120
|
|
|
121
121
|
## Releasing
|
|
122
122
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
1.
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
gem
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
> **Note**: this currently ships a "source" gem only. End users compile
|
|
140
|
-
> the Rust extension on `gem install`. Cross-compiled precompiled gems
|
|
141
|
-
> (per platform) can be added later via
|
|
142
|
-
> [`rb-sys-dock`](https://github.com/oxidize-rb/rb-sys/tree/main/cargo-binstall-rb-sys-dock)
|
|
143
|
-
> and `rake-compiler-dock`.
|
|
123
|
+
Releases are automated. To cut a release:
|
|
124
|
+
|
|
125
|
+
1. Run the **Release Prep** workflow (Actions → Release Prep → Run workflow),
|
|
126
|
+
choosing the `bump` level (`patch`/`minor`/`major`). It bumps
|
|
127
|
+
`lib/redact_ner/version.rb`, rolls `CHANGELOG.md` from GitHub-generated
|
|
128
|
+
notes, opens a **Release PR**, and creates a **draft GitHub Release**.
|
|
129
|
+
2. Review/edit the Release PR (and the draft Release notes) and **merge** it.
|
|
130
|
+
Merging auto-creates and pushes the `vX.Y.Z` tag.
|
|
131
|
+
3. The tag triggers the **Release** workflow: it builds the 5 precompiled
|
|
132
|
+
gems + source gem, then the `publish` job waits for approval on the
|
|
133
|
+
`rubygems` GitHub Environment. Approve it to publish to RubyGems and
|
|
134
|
+
un-draft the GitHub Release with the gem assets attached.
|
|
135
|
+
|
|
136
|
+
To abort before publishing, close the Release PR without merging and delete
|
|
137
|
+
the `release/vX.Y.Z` branch and the draft Release.
|
|
144
138
|
|
|
145
139
|
## License
|
|
146
140
|
|
data/lib/redact_ner/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redact_ner
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: x86_64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Mitsuru Hayasaka
|
|
@@ -79,7 +79,7 @@ metadata:
|
|
|
79
79
|
source_code_uri: https://github.com/mitsuru/redact-ner-ruby
|
|
80
80
|
bug_tracker_uri: https://github.com/mitsuru/redact-ner-ruby/issues
|
|
81
81
|
changelog_uri: https://github.com/mitsuru/redact-ner-ruby/blob/main/CHANGELOG.md
|
|
82
|
-
documentation_uri: https://rubydoc.info/gems/redact_ner/0.1.
|
|
82
|
+
documentation_uri: https://rubydoc.info/gems/redact_ner/0.1.2
|
|
83
83
|
rubygems_mfa_required: 'true'
|
|
84
84
|
post_install_message:
|
|
85
85
|
rdoc_options: []
|