diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 0d23423eaa..0c1953c8d9 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -15,7 +15,8 @@ For an even more detailed look at what has changed, refer to the {uri-repo}/comm This project utilizes semantic versioning. -== Unreleased +// tag::compact[] +== 2.0.18 (2022-10-15) - @mojavelinux Improvements:: @@ -35,7 +36,11 @@ Bug Fixes:: * Fix `Asciidoctor::Cli::Invoker` constructor when first argument is a hash * Update default stylesheet to honor marker on unordered list when marker is defined on ancestor unordered list (#4361) -// tag::compact[] +=== Details + +{url-repo}/releases/tag/v2.0.18[git tag] | {url-repo}/compare/v2.0.17\...v2.0.18[source diff] +// end::compact[] + == 2.0.17 (2022-01-05) - @mojavelinux Bug Fixes:: @@ -75,7 +80,6 @@ Documentation:: * Document how to enable and use the sourcemap (the `:sourcemap` option) * Document how to catalog additional assets (the `:catalog_assets` option) -// end::compact[] == 2.0.16 (2021-08-03) - @mojavelinux Bug Fixes:: diff --git a/README.adoc b/README.adoc index 55d373ad87..cfa6972d83 100644 --- a/README.adoc +++ b/README.adoc @@ -1,5 +1,6 @@ = Asciidoctor Dan Allen ; Sarah White +v2.0.18, 2022-10-15 // settings: :idprefix: :idseparator: - diff --git a/docs/antora.yml b/docs/antora.yml index 180441e1bb..900789233b 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,11 +1,11 @@ name: asciidoctor title: Asciidoctor -version: '2.0' +version: '2.0.18' asciidoc: attributes: xrefstyle: short@ listing-caption: Example@ - release-version: '2.0.17' + release-version: '2.0.18' ruby-description: 'ruby 3.1.2p20 [x86_64-linux]' ruby-version: '3.1' url-api-gems: https://www.rubydoc.info/gems diff --git a/lib/asciidoctor/version.rb b/lib/asciidoctor/version.rb index a8382a0336..2d478661af 100644 --- a/lib/asciidoctor/version.rb +++ b/lib/asciidoctor/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Asciidoctor - VERSION = '2.0.18.pre' + VERSION = '2.0.18' end