Skip to content

Commit

Permalink
Upgrade to asciidoctor-pdf 2.3.3 (#82)
Browse files Browse the repository at this point in the history
Upgrade to asciidoctor-pdf 2.3.3
  • Loading branch information
robertpanzer authored Oct 21, 2022
1 parent 77e6874 commit 1d3ab3b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Fetch Sources
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-java@v2
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
distribution: temurin
java-version: ${{ matrix.java }}
- name: Build
run: |
Expand All @@ -48,10 +48,11 @@ jobs:
- '11'
- '17'
steps:
- uses: actions/checkout@v2
- name: Fetch Sources
uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-java@v2
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
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.0
version=2.3.3
gem_name=asciidoctor-pdf
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ ext {
hamcrestVersion = '2.2'

// gem versions
asciidoctorJVersion = project.hasProperty('asciidoctorJVersion') ? project.asciidoctorJVersion : '2.5.5'
asciidoctorPdfGemVersion = project.hasProperty('asciidoctorPdfGemVersion') ? project.asciidoctorPdfGemVersion : '2.3.0'
asciidoctorJVersion = project.hasProperty('asciidoctorJVersion') ? project.asciidoctorJVersion : '2.5.7'
asciidoctorPdfGemVersion = project.hasProperty('asciidoctorPdfGemVersion') ? project.asciidoctorPdfGemVersion : '2.3.3'

addressableVersion = '2.8.0'
concurrentRubyVersion = '1.1.7'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=2.3.0
version=2.3.3
sourceCompatibility=1.8
targetCompatibility=1.8

0 comments on commit 1d3ab3b

Please sign in to comment.