Skip to content

Commit 62f5f4a

Browse files
committed
v2.3.0
1 parent 1232b28 commit 62f5f4a

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## PrawnPDF master branch
22

3+
## PrawnPDF 2.3.0
4+
5+
### Added OpenType Font Support
6+
7+
TTFunk gained support for OpenType fonts thanks to great work by Cameron Dutro.
8+
9+
Now you can use OTF fonts in your documents.
10+
11+
(Alexander Mankuta)
12+
313
### Improved color string validation
414

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

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

18-
1928
### Fixed instance variable `@italic_angle` not initialized
2029

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

32+
### Added a method to delete pages of the document by index
33+
34+
(David Silveira, [#1092](https://github.com/prawnpdf/prawn/pull/1092))
35+
2336
### Correctly handle image pathnames
2437

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

48-
* Dropped Ruby 2.2 & 2.3 support
61+
* Dropped Ruby 2.2, 2.3 & 2.4 support
4962
* Dropped JRuby 9.1 support
5063

51-
Ruby 2.2 & 2.3 are not supported upstream any more.
64+
Ruby 2.2, 2.3 & 2.4 are not supported upstream any more.
5265

5366
(Alexander Mankuta)
5467

checksums/prawn-2.3.0.gem.sha512

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
de830e1aaddc4ab382495516d503f433063a883cef6066ddbe9c6f670a51132979e33fa7860d7d3b32e1f1cd4f2ec118af7dfa5d13f5b79cfdd12f7e10e27b15

lib/prawn/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Prawn
4-
VERSION = '2.2.2'
4+
VERSION = '2.3.0'
55
end

prawn.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212

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

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

0 commit comments

Comments
 (0)