philiprehberger-toml_kit 0.2.1 → 0.2.4

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: d2f89cf922471a9e2c70133ac896b317aa2f627b220324cd9b64b445049b374f
4
- data.tar.gz: 50f05dfc9b0aaa4e69fc15a1f3e3d7543c0a0071f81c4bb4f1291ecdcaacf606
3
+ metadata.gz: f26a997551860b6225437012c11bee16dd81f8b20be5daf280d87e10b3f4b842
4
+ data.tar.gz: 9bf2e377233636b4bf619b0bcacec17d0fa2638a46d329230eb1c2ca9af35b3b
5
5
  SHA512:
6
- metadata.gz: f0e25fa65fc9b83facbb8367ae5c8018300cbfd4de66512d94dd8f716279e119cdf16986c160dc47f11128b1ec9b0ba5a69df0e58f689f08eda6a62119604d7e
7
- data.tar.gz: e68b68e762bf3e997f88e85251583ccafbc046a9b3efbd1288204f705e3dcc4e47c2924bea102476a8b497156d306b598554e6b4095aa2b61599a3e2531b4416
6
+ metadata.gz: 328d22b2d58478a2890f3e6b6470cfb6c188ff96fc0db22570422b4daecf362745659fe34a2a08a6fa6dd04208b98c67d5580811729cb6560cd7a484fa244850
7
+ data.tar.gz: 8cc9518b64da7aedad615f29cbb480b8778a23d9461ef1efbfe36431b79793aef03625fbe0d24459b46a4ec5df52991d6eaeacc0da6ee984d4637266f47abe01
data/CHANGELOG.md CHANGED
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.4] - 2026-04-09
11
+
12
+ ### Fixed
13
+ - CI: split long gemspec summary line to satisfy RuboCop Layout/LineLength.
14
+
15
+ ## [0.2.3] - 2026-04-08
16
+
17
+ ### Changed
18
+ - Align gemspec summary with README description.
19
+
20
+ ## [0.2.2] - 2026-03-31
21
+
22
+ ### Added
23
+ - Add GitHub issue templates, dependabot config, and PR template
24
+
10
25
  ## [0.2.1] - 2026-03-31
11
26
 
12
27
  ### Changed
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-toml_kit.svg)](https://rubygems.org/gems/philiprehberger-toml_kit)
5
5
  [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-toml-kit)](https://github.com/philiprehberger/rb-toml-kit/commits/main)
6
6
 
7
- TOML v1.0 parser and serializer for Ruby with comment preservation, schema validation, merging, querying, type coercion, and diffing.
7
+ TOML v1.0 parser and serializer for Ruby with comment preservation, schema validation, merging, querying, type coercion, and diffing
8
8
 
9
9
  ## Requirements
10
10
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module TomlKit
5
- VERSION = '0.2.1'
5
+ VERSION = '0.2.4'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-toml_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philip Rehberger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-31 00:00:00.000000000 Z
11
+ date: 2026-04-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Parse and generate TOML v1.0 documents with full type support including
14
14
  datetimes, inline tables, and array of tables. Zero dependencies.
@@ -31,11 +31,11 @@ files:
31
31
  - lib/philiprehberger/toml_kit/serializer.rb
32
32
  - lib/philiprehberger/toml_kit/type_coercion.rb
33
33
  - lib/philiprehberger/toml_kit/version.rb
34
- homepage: https://github.com/philiprehberger/rb-toml-kit
34
+ homepage: https://philiprehberger.com/open-source-packages/ruby/philiprehberger-toml_kit
35
35
  licenses:
36
36
  - MIT
37
37
  metadata:
38
- homepage_uri: https://github.com/philiprehberger/rb-toml-kit
38
+ homepage_uri: https://philiprehberger.com/open-source-packages/ruby/philiprehberger-toml_kit
39
39
  source_code_uri: https://github.com/philiprehberger/rb-toml-kit
40
40
  changelog_uri: https://github.com/philiprehberger/rb-toml-kit/blob/main/CHANGELOG.md
41
41
  bug_tracker_uri: https://github.com/philiprehberger/rb-toml-kit/issues
@@ -58,5 +58,6 @@ requirements: []
58
58
  rubygems_version: 3.5.22
59
59
  signing_key:
60
60
  specification_version: 4
61
- summary: TOML v1.0 parser and serializer for Ruby
61
+ summary: TOML v1.0 parser and serializer for Ruby with comment preservation, schema
62
+ validation, merging, querying, type coercion, and diffing
62
63
  test_files: []