File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 - " 3.3"
1313 - " 3.4"
1414 steps :
15- - uses : actions/checkout@v4
15+ - uses : actions/checkout@v5
1616 - name : Set up Ruby
1717 uses : ruby/setup-ruby@v1
1818 with :
Original file line number Diff line number Diff line change @@ -21,4 +21,6 @@ Layout/LineLength:
2121 Max : 120
2222
2323Metrics/AbcSize :
24- Max : 15
24+ Max : 20
25+ Metrics/MethodLength :
26+ Max : 100
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
1111## [ Unreleased]
1212
13+ ## [ 0.2.0] - 2025-08-23
14+ - Multiple-levels of nesting is now supported
15+ - Slight performance improvement by keeping database open for entire plugin run
16+
1317## [ 0.1.6] - 2025-07-31
1418- Drop Ruby 3.1
1519- sqlite3 requirement to ` 2.7.3 `
Original file line number Diff line number Diff line change @@ -6,14 +6,9 @@ source "https://rubygems.org"
66gemspec
77
88# These are development dependencies
9- gem "jekyll" , "~> 4.0 "
10- gem "rake" , "~> 13.0 "
11- gem "rubocop" , "~> 1.68 "
9+ gem "jekyll" , "~> 4.4" , ">= 4.4.1 "
10+ gem "rake" , "~> 13.3 "
11+ gem "rubocop" , "~> 1.80 "
1212gem "rubocop-rake" , "~> 0.7"
1313
14- # Ruby 3.4 preparedness
15- gem "base64" , "~> 0.3.0"
16- gem "bigdecimal" , "~> 3.1"
17- gem "csv" , "~> 3.3"
18- # Ruby 3.5 preparedness
1914gem "logger" , "~> 1.7"
Original file line number Diff line number Diff line change 22
33module Jekyll
44 module Sqlite
5- VERSION = "0.1.5 "
5+ VERSION = "0.2.0 "
66 end
77end
You can’t perform that action at this time.
0 commit comments