psych-pure 0.3.0 → 0.3.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: 33f682a9e0bba7ec024cec2e1ca54aa791aa550e066ac708d7b9cf4e765e6d5a
4
- data.tar.gz: 5a0b04e41b5700c481658a9604be9f942f41757231f339e8382d53f2a383b431
3
+ metadata.gz: 35490c1f1c411a9f2cec6c47a8d82f0f1ef8c8be88d465f40e3068f52e71c6f3
4
+ data.tar.gz: 0ced963d77678c5272dfaccac1fc4bb437050753553de960e61ccc20406eac0a
5
5
  SHA512:
6
- metadata.gz: 164cb1c175e35e791e0206d14cfef2233817e90d2a6ebabb8f5b88ba59cad9c6fd946d651a13c7aab2437fa33e2e1a23a8d775597958e8d06d42ea21bcd6a1f5
7
- data.tar.gz: dcab2936344a40ddd58495e6a699aebc77c0d5900c53f0692009b5e4b7383e09ae4896c9c76fa2d6b67599da72a313772613ec9440f659558a51d6598f9e4aca
6
+ metadata.gz: 9821a7d3ea7d875fd54b0806ab872bf02ff3b03b0da358669c10d3b5a09006c9245343252988314a084032762da520680326dcacb3f832a02889fc381ecd55ba
7
+ data.tar.gz: c128bc89ef14461a7118534276a1ae253b11fa0aac0e7610cf53abe013c8cf940d240914b05bb36653ed82cedb43dc16050f18b083a07caee64170be9b065ed4
data/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.3.1] - 2026-04-03
10
+
11
+ - Fix merge losing comments from second hash.
12
+ - Fix array element deletion leaving blank lines in output.
13
+ - Lots and lots of optimizations.
14
+ - Fix up empty array and comments.
15
+
9
16
  ## [0.3.0] - 2025-12-25
10
17
 
11
18
  - Support Psych >= 5.3.0 by adding the `parse_symbols` option.
@@ -46,7 +53,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
46
53
 
47
54
  - 🎉 Initial release. 🎉
48
55
 
49
- [unreleased]: https://github.com/kddnewton/psych-pure/compare/v0.3.0...HEAD
56
+ [unreleased]: https://github.com/kddnewton/psych-pure/compare/v0.3.1...HEAD
57
+ [0.3.1]: https://github.com/kddnewton/psych-pure/compare/v0.3.0...v0.3.1
50
58
  [0.3.0]: https://github.com/kddnewton/psych-pure/compare/v0.2.0...v0.3.0
51
59
  [0.2.0]: https://github.com/kddnewton/psych-pure/compare/v0.1.4...v0.2.0
52
60
  [0.1.4]: https://github.com/kddnewton/psych-pure/compare/v0.1.3...v0.1.4
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Psych
4
4
  module Pure
5
- VERSION = "0.3.0"
5
+ VERSION = "0.3.1"
6
6
  end
7
7
  end