Skip to content

Commit 38f91e8

Browse files
committed
Attempt to fix CI
1 parent 5dc47dc commit 38f91e8

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
# Test oldest and newest supported versions
20-
ruby: ['jruby', '2.6', '3.4']
20+
ruby: ['jruby', '2.7', '3.4']
2121
os: [ubuntu-latest, macos-latest, windows-latest]
2222
runs-on: ${{ matrix.os }}
2323
steps:

CHANGELOG.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ For a detailed view of what has changed, refer to the {uri-project}/commits/mast
99

1010
== Unreleased
1111

12-
* Remove unsupported Ruby versions on CI
12+
* Bump minimal supported Ruby version to 2.7
13+
* Add support for Ruby 3.4
1314

1415
== 0.7.0 (2022-12-18) - @slonopotamus
1516

asciidoctor-fb2.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
1010
s.summary = 'Converts AsciiDoc documents to FB2 e-book formats'
1111
s.homepage = 'https://github.com/asciidoctor/asciidoctor-fb2'
1212
s.license = 'MIT'
13-
s.required_ruby_version = '>= 2.6.0'
13+
s.required_ruby_version = '>= 2.7.0'
1414

1515
s.files = `git ls-files`.split("\n").reject { |f| f.match(%r{^spec/}) }
1616
s.executables = `git ls-files -- bin/*`.split("\n").map do |f|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
1919
s.require_paths = ['lib']
2020

2121
s.add_runtime_dependency 'asciidoctor', '~> 2.0'
22-
s.add_runtime_dependency 'fb2rb', '>= 0.6', '< 0.9'
22+
s.add_runtime_dependency 'fb2rb', '~> 0.9'
2323
s.add_runtime_dependency 'mime-types', '~> 3.0'
2424

2525
s.add_development_dependency 'asciidoctor-diagram', '~> 2.0'

0 commit comments

Comments
 (0)