diff --git a/CHANGELOG.md b/CHANGELOG.md index 20a450cbb..bd9a78586 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) @@ -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 @@ -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) diff --git a/checksums/prawn-2.3.0.gem.sha512 b/checksums/prawn-2.3.0.gem.sha512 new file mode 100644 index 000000000..4c238ffaa --- /dev/null +++ b/checksums/prawn-2.3.0.gem.sha512 @@ -0,0 +1 @@ +de830e1aaddc4ab382495516d503f433063a883cef6066ddbe9c6f670a51132979e33fa7860d7d3b32e1f1cd4f2ec118af7dfa5d13f5b79cfdd12f7e10e27b15 \ No newline at end of file diff --git a/lib/prawn/version.rb b/lib/prawn/version.rb index 6612c1ccb..f8b55a939 100644 --- a/lib/prawn/version.rb +++ b/lib/prawn/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Prawn - VERSION = '2.2.2' + VERSION = '2.3.0' end diff --git a/prawn.gemspec b/prawn.gemspec index b8dbe51a9..f689a9d32 100644 --- a/prawn.gemspec +++ b/prawn.gemspec @@ -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}/**/**/*') +