buftok 1.0.0 → 1.0.1
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 +15 -1
- data/buftok.gemspec +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: ccb8527aed71cad86076d553ad95bb5034ff41e0cce2138e58c70c92525a0f94
|
|
4
|
+
data.tar.gz: 8cb51801dc3975bf6719278edb7237482483ff75d8d6a51a2726e5306453595f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9813d806b60d57ad1ba3729acaa48e8f25a94a84d96b08217911638d3866b4deb14f0fdca0fc0b5ea5563557367bc3165d77f3e707a26a858549a360f0fe17a2
|
|
7
|
+
data.tar.gz: 74df77109d7b1733a643d70ab310f086983e8913cd926c15ec79d0221263bace433ec3863f826bef41022b729a2b4b52bbcef694aacaf86ab6333a5a163b46df
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.0.1] - 2026-03-20
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Improve gem push workflow security and reliability
|
|
15
|
+
- Add top-level `permissions: contents: read` and scope `contents: write` to the job
|
|
16
|
+
- Restrict workflow to `sferik/buftok` repository
|
|
17
|
+
- Add `rubygems.org` deployment environment
|
|
18
|
+
- Pin `rubygems/configure-rubygems-credentials` to v1.0.0
|
|
19
|
+
- Sign gem with Sigstore before pushing
|
|
20
|
+
- Push gem with `--attestation` flag
|
|
21
|
+
- Simplify release steps and remove manual git config
|
|
22
|
+
|
|
10
23
|
## [1.0.0] - 2026-03-20
|
|
11
24
|
|
|
12
25
|
### Added
|
|
@@ -79,7 +92,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
79
92
|
- `extract` method for incremental tokenization
|
|
80
93
|
- `flush` method to retrieve remaining buffer contents
|
|
81
94
|
|
|
82
|
-
[Unreleased]: https://github.com/sferik/buftok/compare/v1.0.
|
|
95
|
+
[Unreleased]: https://github.com/sferik/buftok/compare/v1.0.1...HEAD
|
|
96
|
+
[1.0.1]: https://github.com/sferik/buftok/compare/v1.0.0...v1.0.1
|
|
83
97
|
[1.0.0]: https://github.com/sferik/buftok/compare/v0.3.0...v1.0.0
|
|
84
98
|
[0.3.0]: https://github.com/sferik/buftok/compare/v0.2.0...v0.3.0
|
|
85
99
|
[0.2.0]: https://github.com/sferik/buftok/compare/v0.1...v0.2.0
|
data/buftok.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
|
-
spec.version = "1.0.
|
|
4
|
+
spec.version = "1.0.1"
|
|
5
5
|
|
|
6
6
|
spec.authors = ["Tony Arcieri", "Martin Emde", "Erik Berlin"]
|
|
7
7
|
spec.summary = "BufferedTokenizer extracts token delimited entities from a sequence of string inputs"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: buftok
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tony Arcieri
|
|
@@ -52,7 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
53
|
version: '3.0'
|
|
54
54
|
requirements: []
|
|
55
|
-
rubygems_version: 4.0.
|
|
55
|
+
rubygems_version: 4.0.8
|
|
56
56
|
specification_version: 4
|
|
57
57
|
summary: BufferedTokenizer extracts token delimited entities from a sequence of string
|
|
58
58
|
inputs
|