diff --git a/CHANGELOG.md b/CHANGELOG.md index 5154b4754..b688cb368 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes are documented in this file. +## [Version ~1.8.1](https://github.com/asciidocfx/AsciidocFX/releases/tag/v1.8.1) (11.2022) + +* Bugfix for backend attributes resolution + ## [Version ~1.8.0](https://github.com/asciidocfx/AsciidocFX/releases/tag/v1.8.0) (10.2022) * Bugfix for templates diff --git a/CMD_NOTES.adoc b/CMD_NOTES.adoc index 44106de29..9e4ad44fa 100644 --- a/CMD_NOTES.adoc +++ b/CMD_NOTES.adoc @@ -1,5 +1,5 @@ base64 code_sign.p12 | pbcopy -git tag -a v1.8.0 -m "Version 1.8.0" -git tag -d v1.8.0 -git push --delete origin v1.8.0 +git tag -a v1.8.1 -m "Version 1.8.1" +git tag -d v1.8.1 +git push --delete origin v1.8.1 git push --atomic --tags \ No newline at end of file diff --git a/README.adoc b/README.adoc index 20d16faa7..e459fdc61 100644 --- a/README.adoc +++ b/README.adoc @@ -9,7 +9,7 @@ ifndef::env-github[] :toc-placement: left endif::[] :imagesdir: images -:asciidocfx-version: 1.8.0 +:asciidocfx-version: 1.8.1 :download-root: https://github.com/asciidocfx/AsciidocFX/releases/download/v{asciidocfx-version}/ image:https://opencollective.com/AsciidocFX/backers/badge.svg["Backers on Open Collective", link="#backers"] diff --git a/asciidocfx.install4j b/asciidocfx.install4j index 9d64885a6..56aa862c1 100644 --- a/asciidocfx.install4j +++ b/asciidocfx.install4j @@ -1,7 +1,7 @@ - + diff --git a/index.html b/index.html index 79291c5dc..e8642d081 100644 --- a/index.html +++ b/index.html @@ -640,23 +640,23 @@

Mac

-

AsciidocFX_Mac.dmg

+

AsciidocFX_Mac.dmg

Mac M1

-

AsciidocFX_Mac_M1.dmg

+

AsciidocFX_Mac_M1.dmg

Windows

-

AsciidocFX_Windows.exe

+

AsciidocFX_Windows.exe

Windows

-

AsciidocFX_Windows.zip

+

AsciidocFX_Windows.zip

Linux

-

AsciidocFX_Linux.tar.gz

+

AsciidocFX_Linux.tar.gz

diff --git a/pom.xml b/pom.xml index caf201904..f54892ed8 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.kodedu AsciidocFX - 1.8.0 + 1.8.1 jar AsciidocFX diff --git a/src/main/java/com/kodedu/config/ConfigurationBase.java b/src/main/java/com/kodedu/config/ConfigurationBase.java index e2ed0b0e8..a91fc7ab6 100644 --- a/src/main/java/com/kodedu/config/ConfigurationBase.java +++ b/src/main/java/com/kodedu/config/ConfigurationBase.java @@ -47,7 +47,7 @@ public abstract class ConfigurationBase { @Value("${application.version}") private String afxVersion; - private static final List ignoreVersionList = List.of("1.7.5", "1.7.6", "1.7.7", "1.7.8", "1.7.9", "1.8.0"); + private static final List ignoreVersionList = List.of("1.7.5", "1.7.6", "1.7.7", "1.7.8", "1.7.9", "1.8.0", "1.8.1"); public static ObjectProperty configRootLocation = new SimpleObjectProperty<>(); diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 03a47fec6..82a7657bb 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -2,7 +2,7 @@ server.port=0 server.undertow.direct-buffers=true server.undertow.worker-threads=4 #server.undertow.accesslog.enabled=true -application.version=1.8.0 +application.version=1.8.1 application.name=Asciidoc FX application.website=http://asciidocfx.com application.config.folder=.AsciidocFX-${application.version}