Skip to content

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pointlessone committed Aug 1, 2020
1 parent 1232b28 commit 62f5f4a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## PrawnPDF master branch

## PrawnPDF 2.3.0

### Added OpenType Font Support

TTFunk gained support for OpenType fonts thanks to great work by Cameron Dutro.

Now you can use OTF fonts in your documents.

(Alexander Mankuta)

### Improved color string validation

(Brendan Thomas, [#1021](https://github.com/prawnpdf/prawn/pull/1021))
Expand All @@ -15,11 +25,14 @@ incorrect center/right alligned text.

(Matjaz Gregoric, [#1117](https://github.com/prawnpdf/prawn/pull/1117))


### Fixed instance variable `@italic_angle` not initialized

(Rostislav Svoboda, [#1095](https://github.com/prawnpdf/prawn/pull/1095))

### Added a method to delete pages of the document by index

(David Silveira, [#1092](https://github.com/prawnpdf/prawn/pull/1092))

### Correctly handle image pathnames

Prawn used to not close IOs passed to `image`. This prevented file deletion. The
Expand All @@ -45,10 +58,10 @@ missing method.
* Added Ruby 2.7 support
* Added JRuby 9.2 support

* Dropped Ruby 2.2 & 2.3 support
* Dropped Ruby 2.2, 2.3 & 2.4 support
* Dropped JRuby 9.1 support

Ruby 2.2 & 2.3 are not supported upstream any more.
Ruby 2.2, 2.3 & 2.4 are not supported upstream any more.

(Alexander Mankuta)

Expand Down
1 change: 1 addition & 0 deletions checksums/prawn-2.3.0.gem.sha512
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
de830e1aaddc4ab382495516d503f433063a883cef6066ddbe9c6f670a51132979e33fa7860d7d3b32e1f1cd4f2ec118af7dfa5d13f5b79cfdd12f7e10e27b15
2 changes: 1 addition & 1 deletion lib/prawn/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Prawn
VERSION = '2.2.2'
VERSION = '2.3.0'
end
2 changes: 1 addition & 1 deletion prawn.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|

spec.cert_chain = ['certs/pointlessone.pem']
if $PROGRAM_NAME.end_with? 'gem'
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
spec.signing_key = File.expand_path('~/.gem/gem-private_key.pem')
end

spec.files = Dir.glob('{examples,lib,spec,manual}/**/**/*') +
Expand Down

0 comments on commit 62f5f4a

Please sign in to comment.