prawn-rtl-support 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 233930e38a41afb8a807bf1753e171aa3a8112bacd425c57c8b93c2aecd374f2
4
- data.tar.gz: b6ea130b2b05f7ea1f002f7023fbd22b5338324e7f0a4695175310c37d6ebb99
3
+ metadata.gz: d9c6d5e78e3029877b36539b2744d0636e9b4e91d83cbbab52a1765aae3aa6a6
4
+ data.tar.gz: c168f093ce6b78dd8e29c241e579e184b9ea3cf634e735a9078a9edbe19238e1
5
5
  SHA512:
6
- metadata.gz: 882f584327fb3d2cacddb945f46a37c07fc48f0c93e0b069fd3f567359f6df226b2a7ad1ed6f604907bc912228b2acfaf34a88f06adbcde58569d97c8428298e
7
- data.tar.gz: 9602c40c2e4668188f1c8d91b79587a879a50207771b247f79ea7afd9721706a5310e21793e83453b275587b7b5dc5c4e70d2fbec43e8018e277b72a2d4f58cf
6
+ metadata.gz: 9b33a9ba5599a3badc01630723f9012238e5db5342aa0d9105fe4c8584965658830f0a18d8e64e45e71a58a3aa98a0be75e90485e7fed2667caa87d8ae552d32
7
+ data.tar.gz: 8f5e0a768879021153be9425fa9c680336a019b5eae4078ef4ebf864ce36c5e08281e66cd81005b2100ad5dd3dcf52386ad6a9156a1e848aaf77a8149692afa2
data/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.1] - 2025-09-09
9
+
10
+ ### Fixed
11
+ - Fixed homebrew icu4c library path on macOS (#23)
12
+
13
+ ### Internal Changes
14
+ - Updated rubocop-performance dependency (#22)
15
+
8
16
  ## [0.2.0] - 2025-09-04
9
17
 
10
18
  ### ⚠️ Breaking Changes
data/Gemfile CHANGED
@@ -11,7 +11,7 @@ group :development, :test do
11
11
  gem 'rake', '~> 13.0'
12
12
  gem 'rspec', '~> 3.9'
13
13
  gem 'rubocop', '1.80.2'
14
- gem 'rubocop-performance', '1.25.0'
14
+ gem 'rubocop-performance', '1.26.0'
15
15
  gem 'rubocop-rake', '0.7.1'
16
16
  gem 'rubocop-rspec', '3.7.0'
17
17
  gem 'rubocop-rubycw', '0.2.2'
@@ -41,6 +41,7 @@ module Prawn
41
41
  else
42
42
  [
43
43
  '/usr/local/{lib64,lib}',
44
+ '/usr/local/opt/icu4c/{lib64,lib}',
44
45
  '/opt/local/{lib64,lib}',
45
46
  '/opt/homebrew/{lib64,lib}',
46
47
  '/usr/{lib64,lib}'
@@ -3,7 +3,7 @@
3
3
  module Prawn
4
4
  module Rtl
5
5
  module Support
6
- VERSION = '0.2.0'
6
+ VERSION = '0.2.1'
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prawn-rtl-support
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oleksandr Lapchenko