henitai 0.5.0 → 0.5.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 +12 -1
- data/lib/henitai/version.rb +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 321426b14e3d03dae68885665b6abee8e11ea48d7a00036664dd0b6a10af2659
|
|
4
|
+
data.tar.gz: 262e708c7393a11e57f8fe25b9588b8b6aa04c026bebef1dec0aa77fedd782ba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ef8ed1d823903bceca334c81a895a1734745480e0966ab55e100ea95b8479201824ebbd048ea86f0465c0a98fd39dd561a62876614e20bed7b1f64460d10e20
|
|
7
|
+
data.tar.gz: b152279d4854b7aeb55afb5696a77054184947f0ea16570dd9e3f90a62388295b6f4f6499f101d323a8fa0071c9d83d8847e3348c878061c980587ab6ddfd53f
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.5.1] - 2026-08-25
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- `minitest` runtime dependency widened from `~> 5.25` to `>= 5.25, < 7`.
|
|
14
|
+
The floor is unchanged; only the ceiling moved. `~> 5.25` capped the
|
|
15
|
+
range below 6.0, so bundles resolving minitest 6.x could not install
|
|
16
|
+
henitai even though the integration makes no 5.x-only assumptions.
|
|
17
|
+
`spec/infra/gemspec_dependencies_spec.rb` now asserts both ends of the
|
|
18
|
+
range so a regression fails the suite rather than shipping quietly
|
|
19
|
+
|
|
10
20
|
## [0.5.0] - 2026-08-21
|
|
11
21
|
|
|
12
22
|
### Security
|
|
@@ -506,7 +516,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
506
516
|
- CLI critical path: `henitai run` now executes the full pipeline, supports `--since`, returns CI-friendly exit codes, and `henitai version` prints `Henitai::VERSION`
|
|
507
517
|
- RSpec per-test coverage output: `henitai/coverage_formatter` now writes `coverage/henitai_per_test.json`
|
|
508
518
|
|
|
509
|
-
[Unreleased]: https://github.com/martinotten/henitai/compare/v0.5.
|
|
519
|
+
[Unreleased]: https://github.com/martinotten/henitai/compare/v0.5.1...HEAD
|
|
520
|
+
[0.5.1]: https://github.com/martinotten/henitai/compare/v0.5.0...v0.5.1
|
|
510
521
|
[0.5.0]: https://github.com/martinotten/henitai/compare/v0.4.0...v0.5.0
|
|
511
522
|
[0.4.0]: https://github.com/martinotten/henitai/compare/v0.3.1...v0.4.0
|
|
512
523
|
[0.3.1]: https://github.com/martinotten/henitai/compare/v0.3.0...v0.3.1
|
data/lib/henitai/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: henitai
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Otten
|
|
@@ -13,16 +13,22 @@ dependencies:
|
|
|
13
13
|
name: minitest
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
15
15
|
requirements:
|
|
16
|
-
- - "
|
|
16
|
+
- - ">="
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
18
|
version: '5.25'
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '7'
|
|
19
22
|
type: :runtime
|
|
20
23
|
prerelease: false
|
|
21
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
25
|
requirements:
|
|
23
|
-
- - "
|
|
26
|
+
- - ">="
|
|
24
27
|
- !ruby/object:Gem::Version
|
|
25
28
|
version: '5.25'
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '7'
|
|
26
32
|
- !ruby/object:Gem::Dependency
|
|
27
33
|
name: prism
|
|
28
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -246,7 +252,7 @@ metadata:
|
|
|
246
252
|
changelog_uri: https://github.com/martinotten/henitai/blob/main/CHANGELOG.md
|
|
247
253
|
documentation_uri: https://github.com/martinotten/henitai/blob/main/README.md
|
|
248
254
|
homepage_uri: https://github.com/martinotten/henitai
|
|
249
|
-
source_code_uri: https://github.com/martinotten/henitai/tree/v0.5.
|
|
255
|
+
source_code_uri: https://github.com/martinotten/henitai/tree/v0.5.1
|
|
250
256
|
rubygems_mfa_required: 'true'
|
|
251
257
|
rdoc_options: []
|
|
252
258
|
require_paths:
|