Skip to content

Commit

Permalink
Prepare 1.5.0.alpha.15 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mojavelinux committed Mar 27, 2017
1 parent 3ee6fcf commit 5bf8666
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 7 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,37 @@
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 {uri-repo}/commits/master[commit history] on GitHub.

== 1.5.0.alpha.15 (2017-03-27) - @mojavelinux

* fix compatibility with Prawn 2.2.0 (#775)
* add workaround for TTFunk bug when font table has empty data
* take fallback font into account when calculating width of string (#651)
* fill and stroke bounds of sidebar across all pages (#259) (@TobiasHector)
* allow page margin to be set using pdf-page-margin attribute (#749)
* implement none, no-bullet and unstyled unordered list styles
* add dots to all levels in TOC if toc_dot_leader_levels is all
* use bold style for description list term by default (#776)
* always escape index term text (#761)
* don't crash if color value on text span is invalid
* implement start line number for source listing (Rouge) (#752)
* enable "start inline" option when highlighting PHP (#755)
* persuade CodeRay to handle html+ source languages
* introduce stripes attribute to table to control zebra-striping (#724)
* allow theme to set style of table border and grid (#766)
* allow theme to set text transform on header cell in table body (#750)
* set top border width of first body row to match bottom border width of header row
* don't add TOC if empty (#747)
* optimize code that generates outline level
* don't recalculate header_cell_data for each row
* use slightly more efficient way to find Pygments lexer
* upgrade rouge to 2.0.7
* upgrade prawn-templates to 0.0.5
* revise information in theming guide pertaining to custom fonts
* document in README how to get full support for CJK languages
* document in theming guide that Asciidoctor PDF subsets font when embedding
* document that background images are scaled to fit bounds of page
* add note in theming guide about using double quoted strings

== 1.5.0.alpha.14 (2017-02-05) - @mojavelinux

* add support for AsciiDoc table cells (including nested tables) (#6)
Expand Down
10 changes: 4 additions & 6 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
= Asciidoctor PDF: A native PDF converter for AsciiDoc
Dan Allen <https://github.com/mojavelinux[@mojavelinux]>; Sarah White <https://github.com/graphitefriction[@graphitefriction]>
v1.5.0.alpha.15, 2017-03-27
// Settings:
:experimental:
:idprefix:
Expand Down Expand Up @@ -131,10 +132,8 @@ Therefore, to use Asciidoctor PDF with Ruby 1.9.3, you must first explicitly ins
You can then proceed with installation of Asciidoctor PDF on Ruby 1.9.3.
For all other versions of Ruby, you have to install Prawn 2.1.0.
The latest release of Prawn is not compatible with the latest release of Asciidoctor PDF (or its own dependencies, for that matter).
$ gem install prawn --version 2.1.0
For all other versions of Ruby, you can simply install the Asciidoctor PDF gem.
It will transitively install all required dependencies.
====

=== System Encoding
Expand All @@ -157,8 +156,7 @@ You can get {project-name} by <<install-the-published-gem,installing the publish
=== Install the Published Gem

{project-name} is published as a pre-release on RubyGems.org.
First, make sure you have install Prawn as explained in the <<Prerequisites,prerequisites>>.

First, make sure you have satisfied the <<Prerequisites,prerequisites>>.
Then, you can install the published gem using the following command:

$ gem install asciidoctor-pdf --pre
Expand Down
Binary file modified examples/basic-example.pdf
Binary file not shown.
Binary file modified examples/chronicles-example.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/asciidoctor-pdf/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Asciidoctor
module Pdf
VERSION = '1.5.0.alpha.15.dev'
VERSION = '1.5.0.alpha.15'
end
end

0 comments on commit 5bf8666

Please sign in to comment.