henitai 0.1.5 → 0.1.6
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 +10 -1
- data/lib/henitai/integration.rb +0 -1
- data/lib/henitai/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: a9bb3923bfa06aa75bb23e8e58eebfcde950a31889ecbd53cac33f374be8cb45
|
|
4
|
+
data.tar.gz: 182affc0d3c950229c1507d1b3b5a32ed3857b04a9536c8848b056c179956d0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c4fd4c134c4dc11d68c1571bb0a1fab69b96d1c23332c30f47fe6077be9ca54208d092ab1a87e8ed22f6b1e6c26150998c9c187cb19c9364e4b7897808993f49
|
|
7
|
+
data.tar.gz: 47939f9df02863715ba38f2f0120cad56cba5dd0fa7257c186e325ed371830352f929bb3786723274677360d80fc67754368b55312f5c5279ddd4c57f8c620aa
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.6] - 2026-04-14
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Minitest is no longer required eagerly when `henitai/integration` loads, so
|
|
14
|
+
projects that do not include Minitest in their bundle can still boot and use
|
|
15
|
+
non-Minitest integrations without a parent-process `LoadError`
|
|
16
|
+
|
|
10
17
|
## [0.1.5] - 2026-04-14
|
|
11
18
|
|
|
12
19
|
### Fixed
|
|
@@ -159,7 +166,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
159
166
|
- CLI critical path: `henitai run` now executes the full pipeline, supports `--since`, returns CI-friendly exit codes, and `henitai version` prints `Henitai::VERSION`
|
|
160
167
|
- RSpec per-test coverage output: `henitai/coverage_formatter` now writes `coverage/henitai_per_test.json`
|
|
161
168
|
|
|
162
|
-
[Unreleased]: https://github.com/martinotten/henitai/compare/v0.1.
|
|
169
|
+
[Unreleased]: https://github.com/martinotten/henitai/compare/v0.1.6...HEAD
|
|
170
|
+
[0.1.6]: https://github.com/martinotten/henitai/compare/v0.1.5...v0.1.6
|
|
171
|
+
[0.1.5]: https://github.com/martinotten/henitai/compare/v0.1.4...v0.1.5
|
|
163
172
|
[0.1.4]: https://github.com/martinotten/henitai/compare/v0.1.3...v0.1.4
|
|
164
173
|
[0.1.3]: https://github.com/martinotten/henitai/compare/v0.1.2...v0.1.3
|
|
165
174
|
[0.1.2]: https://github.com/martinotten/henitai/compare/v0.1.1...v0.1.2
|
data/lib/henitai/integration.rb
CHANGED
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.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Otten
|
|
@@ -157,7 +157,7 @@ metadata:
|
|
|
157
157
|
changelog_uri: https://github.com/martinotten/henitai/blob/main/CHANGELOG.md
|
|
158
158
|
documentation_uri: https://github.com/martinotten/henitai/blob/main/README.md
|
|
159
159
|
homepage_uri: https://github.com/martinotten/henitai
|
|
160
|
-
source_code_uri: https://github.com/martinotten/henitai/tree/v0.1.
|
|
160
|
+
source_code_uri: https://github.com/martinotten/henitai/tree/v0.1.6
|
|
161
161
|
rubygems_mfa_required: 'true'
|
|
162
162
|
rdoc_options: []
|
|
163
163
|
require_paths:
|