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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bbdd3178a5a3c12ed93eeb4fbab923ef5cd31ee8fd776f3d8a256b7b8de63abb
4
- data.tar.gz: 63a9231d194647105aedd9023951be1cd068c915e2f52d70ea8e48200106e6d3
3
+ metadata.gz: 0ab24e19a57687e852719639de59d10ce6ccd9aab1b573d27525890c377ae869
4
+ data.tar.gz: f7b73d0acad37cb075c7e11f00684ee928105e4e2548ba4a0cc91e76047d9aa2
5
5
  SHA512:
6
- metadata.gz: 75f761aeed0a86d4f54180a70a0ddffbac1d713467079ea83d463efb7d013530b2320bb45fdac37463b817a6ada2dafb307136341f8dadad0b7913f065e5c966
7
- data.tar.gz: fd189b88d88a21b63e1d52b51f84b54c9ef6ae8bcba32df933b2871372b926ce426eaa3ea150dfee45f0318e774d1fcbd02536f942a09933b1c336747e6bbaf6
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.1...HEAD
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
- For maintainers to cut a new release:
124
-
125
- 1. Update `lib/redact_ner/version.rb` and `CHANGELOG.md`. Commit.
126
- 2. Tag the release: `git tag v$(ruby -Ilib -rredact_ner/version -e 'puts RedactNer::VERSION')`
127
- 3. Push: `git push && git push --tags`
128
- 4. Build and ship the gem:
129
-
130
- ```sh
131
- bin/rake build # produces pkg/redact_ner-X.Y.Z.gem
132
- gem push pkg/redact_ner-*.gem
133
- ```
134
-
135
- The first `gem push` requires a rubygems.org API key (or an OIDC
136
- trusted-publisher setup). Two-factor MFA is required by this gem's
137
- `rubygems_mfa_required` metadata.
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RedactNer
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
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.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.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: []