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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c690ba4e56790f19326b49d3476839028784f9da66b4d46d5a18680cac0ba927
4
- data.tar.gz: 6007f855de36ef230b789fdab081877f19c9be15c583a342e669eaa811898317
3
+ metadata.gz: 649b75500be7e7a3e9c445e1c44cc35c95aef1caed51afba1711a6c9e8463388
4
+ data.tar.gz: '0382acb5e7cbcad06d0fae9590bab4fba7d9f57abee556d7dbad20eb5cdafdce'
5
5
  SHA512:
6
- metadata.gz: ecc1cbd701f3b07f70694dd0a9f7314d7d65bb2b2040ad0af3658d763ad540bb40daf90e1494100e49ab72a10540377786d793a2416536cc055f85a16983fcb7
7
- data.tar.gz: dbab2960b310640f780b3d88695ec16cbdf1902fba99019736bedf7ab3ecf0a6f956c370b9b3c8858ad559f4f40fe7a6f354843a7ceef790e97010f751c898cc
6
+ metadata.gz: dd3f001523be128185e881527f38d6c52afd890eafa72569f289f952d066f272eafd3f70b354f9bf234c8d25155bbe66f1c9ab5c9e693fc7265d9886d722e2a8
7
+ data.tar.gz: d94034fe3aa2a3bac172267f2422cebb76d4c333586d0afd37579dae32e1f498aaa59f98f4e2a45660dc5c91f34d94ff11aaa21790ccfd15034247f90a6cf2a8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
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
 
@@ -24,7 +24,11 @@ Gem::Specification.new do |spec|
24
24
  "rubygems_mfa_required" => "true"
25
25
  }
26
26
 
27
- spec.required_ruby_version = ">= 3.4"
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"]
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module Documents
5
- VERSION = "0.7.4"
5
+ VERSION = "0.7.5"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-documents
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.4
4
+ version: 0.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Svend Gundestrup