Skip to content

Commit 98cdb38

Browse files
authored
Merge branch 'master' into fix-926-extension-config-symbols
2 parents 7b39deb + e241173 commit 98cdb38

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.adoc

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ For a detailed view of what has changed, refer to the {uri-repo}/commits/master[
1515

1616
Bug Fixes::
1717

18-
* Inline macro attribute parsing changes after first document conversion (@wilkinsona) (#926)
18+
* Inline macro attribute parsing changes after first document conversion (@wilkinsona) (#926)
19+
* Upgrade to Rouge 3.20.0, fixing error `uninitialized constant Rouge::Lexers` problem (@ahus1) (#925)
1920

2021
== 2.3.0 (2020-05-02)
2122

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ ext {
5959
// gem versions
6060
asciidoctorGemVersion = project.hasProperty('asciidoctorGemVersion') ? project.asciidoctorGemVersion : '2.0.10'
6161
coderayGemVersion = '1.1.2'
62-
rougeGemVersion = '3.12.0'
62+
rougeGemVersion = '3.20.0'
6363

6464
codenarcVersion = '0.24.1'
6565
groovyVersion = '2.4.13'

chocolatey/asciidoctorj.nuspec

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
66
<id>asciidoctorj</id>
77
<title>AsciidoctorJ (Install)</title>
8-
<version>2.2.0</version>
8+
<version>2.3.0</version>
99
<!--
1010
https://github.com/asciidoctor/asciidoctorj/graphs/contributors
1111
https://github.com/asciidoctor/asciidoctor/graphs/contributors
@@ -29,7 +29,8 @@
2929
<copyright>2012-2019 Dan Allen, Ryan Waldron and the Asciidoctor Project</copyright>
3030
<licenseUrl>https://raw.githubusercontent.com/asciidoctor/asciidoctorj/master/LICENSE.txt</licenseUrl>
3131
<requireLicenseAcceptance>false</requireLicenseAcceptance>
32-
<iconUrl>https://raw.githubusercontent.com/asciidoctor/brand/master/logo/logo-fill-color.svg?sanitize=true</iconUrl>
32+
<!-- <iconUrl>https://raw.githubusercontent.com/asciidoctor/brand/master/logo/logo-fill-color.svg?sanitize=true</iconUrl> -->
33+
<iconUrl>https://cdn.statically.io/gh/asciidoctor/brand/b9cf5e27/logo/logo-fill-color.svg</iconUrl>
3334
<!--
3435
XXX Add other JREs and JVMs when https://github.com/chocolatey/choco/issues/879 is fixed?
3536
<dependencies>

chocolatey/tools/chocolateyinstall.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
$ErrorActionPreference = 'Stop'; # stop on all errors
66

7-
$adocjVersion = '2.2.0'
7+
$adocjVersion = '2.3.0'
88
$packageName= 'asciidoctorj' # arbitrary name for the package, used in messages
99
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
1010
# Which is the preferred mirror? There are many listed at
@@ -18,7 +18,7 @@ $packageArgs = @{
1818
packageName = $packageName
1919
unzipLocation = $toolsDir
2020
url = $url
21-
checksum = 'd5240240a4e39f4f9c56abab2da3e960a4784b7d8e7befa323fc9f64890f0029'
21+
checksum = '2557edc4db4787aa0b3f5266728414862fa770a92f8d6ac407b34c47b4b02e7c'
2222
checksumType = 'sha256' #default is md5, can also be sha1
2323
#checksum64 = ''
2424
#checksumType64= 'md5' #default is checksumType

0 commit comments

Comments
 (0)