app-info 2.6.2 → 2.6.3

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: f7f7e727564d15f13cd4ef2c3a8901f78402067892c0d633c38026744fc08b26
4
- data.tar.gz: 3bb384bb2ebfc94d757ca3a005dcf0b36daaddff40814809a6a329d422f51de9
3
+ metadata.gz: 9eef87bb332f9254d735c87fee5c1b97fe52f46c2a170330dfb2e97b0da53820
4
+ data.tar.gz: dd9ca88176f686024e9df28db23912a3e417973872d8a8641ba308dec0310828
5
5
  SHA512:
6
- metadata.gz: 70e3550ea8788652e1da6e63a0c87b23bfde92e29458a83816a25723f7ce0e2a72e4aa68092fef06ee38d9bde0bb36c513fd82b2f35fecb7baed3c952a6eb067
7
- data.tar.gz: 77d9f91f18730b9cc071a7c0cab9860130ab79dc804e5cf05f254b1896aaa60ce743d4f66fb2624b5ce501e0f6bf118aad98efe131b4494a924b505af50d2f95
6
+ metadata.gz: 63f890a680ec379ea50865884350b26b974db6ab90e093543f03383d9cbf6387cdf22265373d50178fd529bd7b069aeb87618b81c63a7274d2c1f25f69a3a577
7
+ data.tar.gz: 027331c8ed5da50e17aae317c800cc8418c8a1453e5422778b4d8a2cd3467ef6fac89e2045faa6a5becff9aaf25617e04b711011589e92801b22c051d628b1c4
data/CHANGELOG.md CHANGED
@@ -9,12 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
9
9
 
10
10
  > List all changes before release a new version.
11
11
 
12
- ## [2.6.2] (2021-08-27)
12
+ ## [2.6.3] (2021-08-27)
13
13
 
14
14
  ### Fixed
15
15
 
16
16
  - Force write all icon data with `ASCII-8BIT`
17
-
17
+ - Force convert developer cert name to `UTF-8`
18
18
  ## [2.6.1] (2021-08-26)
19
19
 
20
20
  ### Fixed
@@ -173,8 +173,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
173
173
 
174
174
  - Updated dependency of CFPropertly list be a range between 2.3.4. (thanks @[cschroed](https://github.com/cschroed))
175
175
 
176
- [Unreleased]: https://github.com/icyleaf/app-info/compare/v2.6.1..HEAD
177
- [2.6.2]: https://github.com/icyleaf/app-info/compare/v2.6.1...v2.6.2
176
+ [Unreleased]: https://github.com/icyleaf/app-info/compare/v2.6.3..HEAD
177
+ [2.6.3]: https://github.com/icyleaf/app-info/compare/v2.6.1...v2.6.3
178
178
  [2.6.1]: https://github.com/icyleaf/app-info/compare/v2.6.0...v2.6.1
179
179
  [2.6.0]: https://github.com/icyleaf/app-info/compare/v2.5.4...v2.6.0
180
180
  [2.5.4]: https://github.com/icyleaf/app-info/compare/v2.5.3...v2.5.4
@@ -245,7 +245,7 @@ module AppInfo
245
245
  end
246
246
 
247
247
  def name
248
- @raw.subject.to_a.find { |name, _, _| name == 'CN' }[1]
248
+ @raw.subject.to_a.find { |name, _, _| name == 'CN' }[1].force_encoding('UTF-8')
249
249
  end
250
250
 
251
251
  def created_date
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AppInfo
4
- VERSION = '2.6.2'
4
+ VERSION = '2.6.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app-info
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.2
4
+ version: 2.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - icyleaf