diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index bc5e1cf47..717332b0b 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -5,13 +5,17 @@ This document provides a high-level view of the changes to the {project-name} by release. For a detailed view of what has changed, refer to the {url-repo}/commits/main[commit history] on GitHub. -== Unreleased +== 2.0.0 (2022-05-18) - @mojavelinux Improvements:: * use more stable approach to recreating current bounds in scratch document * add foundation to support multi-column layout for the body of an article (using an extended converter only) +=== Details + +{url-repo}/releases/tag/v2.0.0[git tag] | {url-repo}/compare/v2.0.0.rc.1\...v2.0.0[full diff] + == 2.0.0.rc.1 (2022-05-17) - @mojavelinux Enhancements:: diff --git a/README.adoc b/README.adoc index f329eb8af..af995de49 100644 --- a/README.adoc +++ b/README.adoc @@ -1,6 +1,6 @@ = Asciidoctor PDF: A native PDF converter for AsciiDoc Dan Allen ; Sarah White -v2.0.0.rc.1, 2022-05-17 +v2.0.0, 2022-05-18 // Settings: :experimental: :idprefix: @@ -24,7 +24,7 @@ endif::[] :project-handle: asciidoctor-pdf // Variables: :release-line: 2.0.x -:release-version: 2.0.0.rc.1 +:release-version: 2.0.0 // URLs: :url-gem: https://rubygems.org/gems/asciidoctor-pdf :url-project: https://github.com/asciidoctor/asciidoctor-pdf diff --git a/docs/antora.yml b/docs/antora.yml index f4dfec21b..919ee1f79 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,7 +1,7 @@ name: pdf-converter title: Asciidoctor PDF version: '2.0' -prerelease: '.0.rc.1' +prerelease: false asciidoc: attributes: xrefstyle: short@ diff --git a/lib/asciidoctor/pdf/version.rb b/lib/asciidoctor/pdf/version.rb index fa36b9e03..a4ac8b67d 100644 --- a/lib/asciidoctor/pdf/version.rb +++ b/lib/asciidoctor/pdf/version.rb @@ -2,6 +2,6 @@ module Asciidoctor module PDF - VERSION = '2.0.0.rc.1' + VERSION = '2.0.0' end end