Skip to content

Commit fda5667

Browse files
committed
New Release: v0.2.0
1 parent 1a0d94b commit fda5667

5 files changed

Lines changed: 12 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
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:

.rubocop.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ Layout/LineLength:
2121
Max: 120
2222

2323
Metrics/AbcSize:
24-
Max: 15
24+
Max: 20
25+
Metrics/MethodLength:
26+
Max: 100

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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`

Gemfile

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,9 @@ source "https://rubygems.org"
66
gemspec
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"
1212
gem "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
1914
gem "logger", "~> 1.7"

lib/jekyll-sqlite/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Jekyll
44
module Sqlite
5-
VERSION = "0.1.5"
5+
VERSION = "0.2.0"
66
end
77
end

0 commit comments

Comments
 (0)