Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to asciidoctor-pdf 2.3.17 #104

Merged
merged 2 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- '17'
os:
- ubuntu-latest
- macos-latest
- macos-13
runs-on: ${{ matrix.os }}
steps:
- name: Fetch Sources
Expand Down
2 changes: 2 additions & 0 deletions asciidoctorj-pdf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ dependencies {
exclude module: 'thread_safe'
exclude module: 'prawn'
exclude module: 'addressable'
exclude module: 'rexml'
exclude module: 'public_suffix'
exclude module: 'ttfunk'
exclude module: 'concurrent-ruby'
Expand All @@ -27,6 +28,7 @@ dependencies {
gems "rubygems:text-hyphen:$textHyphenVersion"
gems "rubygems:ttfunk:$ttfunkGemVersion"
gems "rubygems:css_parser:$cssParserGemVersion"
gems "rubygems:rexml:$rexmlGemVersion"

testImplementation "org.apache.pdfbox:pdfbox:$pdfboxVersion"
}
Expand Down
2 changes: 1 addition & 1 deletion asciidoctorj-pdf/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
properName=AsciidoctorJ PDF
description=AsciidoctorJ PDF bundles the Asciidoctor PDF RubyGem (asciidoctor-pdf) so it can be loaded into the JVM using JRuby.
version=2.3.15
version=2.3.17
gem_name=asciidoctor-pdf
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,15 @@ ext {

// gem versions
asciidoctorJVersion = project.hasProperty('asciidoctorJVersion') ? project.asciidoctorJVersion : '2.5.7'
asciidoctorPdfGemVersion = project.hasProperty('asciidoctorPdfGemVersion') ? project.asciidoctorPdfGemVersion : '2.3.15'
asciidoctorPdfGemVersion = project.hasProperty('asciidoctorPdfGemVersion') ? project.asciidoctorPdfGemVersion : '2.3.17'

addressableVersion = '2.8.0'
concurrentRubyVersion = '1.1.7'
public_suffixVersion = '1.4.6'
prawnGemVersion=project.hasProperty('prawnGemVersion') ? project.prawnGemVersion : '2.4.0'
prawnSvgGemVersion = "0.34.1"
rghostGemVersion = '0.9.7'
rexmlGemVersion = '3.2.6'
threadSafeGemVersion = '0.3.6'
ttfunkGemVersion = '1.7.0'
cssParserGemVersion = '1.12.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2.3.15
version=2.3.17
sourceCompatibility=1.8
targetCompatibility=1.8

Loading