jekyll-documents 0.7.4 → 0.7.5
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 +11 -1
- data/jekyll-documents.gemspec +5 -1
- data/lib/jekyll/documents/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 649b75500be7e7a3e9c445e1c44cc35c95aef1caed51afba1711a6c9e8463388
|
|
4
|
+
data.tar.gz: '0382acb5e7cbcad06d0fae9590bab4fba7d9f57abee556d7dbad20eb5cdafdce'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd3f001523be128185e881527f38d6c52afd890eafa72569f289f952d066f272eafd3f70b354f9bf234c8d25155bbe66f1c9ab5c9e693fc7265d9886d722e2a8
|
|
7
|
+
data.tar.gz: d94034fe3aa2a3bac172267f2422cebb76d4c333586d0afd37579dae32e1f498aaa59f98f4e2a45660dc5c91f34d94ff11aaa21790ccfd15034247f90a6cf2a8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [0.7.5] - 2026-09-21
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Git hooks now live in `bin/hooks/` as tracked files — `bin/install-hooks.sh` sets `core.hooksPath` so git runs them directly, eliminating drift between committed and installed hooks
|
|
7
|
+
- `.ruby-version` is now the single source for the supported Ruby floor — the gemspec derives `required_ruby_version` from it instead of keeping a separate literal
|
|
8
|
+
- Bump `plaintext` to `~> 0.4`
|
|
9
|
+
- Sync `example/` lockfile with the root bundle (jekyll-documents 0.7.4, bigdecimal 4.1.3, google-protobuf 4.36.2, sass-embedded 1.104.1)
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- `.devin/wiki.json` steering notes updated to `Ruby >= 3.4` and the stale RSpec example count removed (matched the gemspec requirement and current gates)
|
|
13
|
+
- Added `rake version:check_consistency` (wired into `version:pre_release`) — fails the release if `Ruby >= X.Y` literals in tracked docs or `.rubocop.yml`'s `TargetRubyVersion` don't match the `.ruby-version` floor
|
|
4
14
|
|
|
5
15
|
## [0.7.4] - 2026-09-18
|
|
6
16
|
|
data/jekyll-documents.gemspec
CHANGED
|
@@ -24,7 +24,11 @@ Gem::Specification.new do |spec|
|
|
|
24
24
|
"rubygems_mfa_required" => "true"
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
# Floor derived from .ruby-version's major.minor — single source for the
|
|
28
|
+
# supported minimum. If the floor ever needs to lag the dev version
|
|
29
|
+
# (e.g. support 3.3 while developing on 3.4), revert to a literal here.
|
|
30
|
+
spec.required_ruby_version =
|
|
31
|
+
">= #{File.read(File.expand_path('.ruby-version', __dir__)).strip[/\d+\.\d+/]}"
|
|
28
32
|
|
|
29
33
|
spec.files = Dir.glob("{lib,assets,_includes,_layouts}/**/*") +
|
|
30
34
|
["README.md", "CHANGELOG.md", "LICENSE", "jekyll-documents.gemspec"]
|