po_to_json 2.1.0 → 2.1.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 +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +2 -2
- data/lib/po_to_json/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c6d61199a69adfb49fcba684a6a7b0b7daaae568f8f46f513e7598f7f85bd81
|
4
|
+
data.tar.gz: 5225ba8efc97ec3c0ca048a30f46e2407a926edc97630be0e1e83965de61a5ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f79ed110a66005835f99508cb12342bd4727869e323eb8d495f5ee7ddf7243f35f4085f1745a7f32da830229fb48dc6d5a26e97268a0fad41f50dcc1f8ace66
|
7
|
+
data.tar.gz: 1a239a635a7eb17d8433f6cf720fd7123944b456dd3f06a9920d784c77e33eea47c30e7cbac8e626310a0c422a9278a14ec69281d76ffb46f97ee1c076602026
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [2.1.1](https://github.com/webhippie/po_to_json/compare/v2.1.0...v2.1.1) (2025-09-22)
|
4
|
+
|
5
|
+
|
6
|
+
### Bugfixes
|
7
|
+
|
8
|
+
* **patch:** update dependency ruby to v3.4.6 ([#38](https://github.com/webhippie/po_to_json/issues/38)) ([3934def](https://github.com/webhippie/po_to_json/commit/3934defc08f0c6b132b75a8f2a75ecb9ec95df3f))
|
9
|
+
|
3
10
|
## [2.1.0](https://github.com/webhippie/po_to_json/compare/v2.0.0...v2.1.0) (2025-09-12)
|
4
11
|
|
5
12
|
|
data/README.md
CHANGED
@@ -16,7 +16,7 @@ look at the [wokflow][workflow].
|
|
16
16
|
## Installation
|
17
17
|
|
18
18
|
```ruby
|
19
|
-
gem 'po_to_json', '~> 2.1.
|
19
|
+
gem 'po_to_json', '~> 2.1.1'
|
20
20
|
```
|
21
21
|
|
22
22
|
## Versioning
|
@@ -33,7 +33,7 @@ gem using the [Pessimistic Version Constraint][pvc] with two digits of precision
|
|
33
33
|
For example:
|
34
34
|
|
35
35
|
```ruby
|
36
|
-
spec.add_dependency 'po_to_json', '~> 2.1.
|
36
|
+
spec.add_dependency 'po_to_json', '~> 2.1.1'
|
37
37
|
```
|
38
38
|
|
39
39
|
## Usage
|
data/lib/po_to_json/version.rb
CHANGED