philiprehberger-struct_kit 0.1.6 → 0.1.8

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: ae7bb5e490ced2ada7a32c9c306bf6fd7f9bdd8d40f5d323606f6d8c293cfb23
4
- data.tar.gz: 0b71e24f3d600b946b3556512cfcef521684e0610b84c6f266cf26516c86d964
3
+ metadata.gz: d5b8ed49fb5c9e26426fe04c58df5643f97dc3115d03f927f3eb457c0a1230d0
4
+ data.tar.gz: 93f560ea8523ab503bf3939e4d24563dba9f16348e53f0212935255acbf2d233
5
5
  SHA512:
6
- metadata.gz: 92d8d3ed2494538406ee0b94d67a13f7a4c40160d1f43a27278ea52f229519ea4873ee221671c1b3c66fd2a0dc227e338220cac8ce208d5a5232ebe6ea0be74a
7
- data.tar.gz: c0811aa050c2fe798dc4b0d657931ad683d0bc211a33c396dde5f641ffd12b23da6576bf595066c7d2a752fad0104aa2ccb96b002cd2b93227e6f9c7260f0614
6
+ metadata.gz: 54206d6da3220c73a38c45edbfb8d6fb15876b5862578c9fa45d5b3d24555b0bc42e7e560975bdd131c426be95c6b9205792e47ab97da3f5188c29fa5600837f
7
+ data.tar.gz: 20cd86015d433e7217e22b38ac5f972c991e802c96728ead5bb0a955a47e8a3ba6ee3dda0893ced81c37a89ea4534080fdd7389a12799baafcd5a8d21fc46a91
data/CHANGELOG.md CHANGED
@@ -7,6 +7,16 @@ and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.8] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Fix stray character in CHANGELOG formatting
14
+
15
+ ## [0.1.7] - 2026-03-24
16
+
17
+ ### Fixed
18
+ - Standardize README code examples to use double-quote require statements
19
+
10
20
  ## [0.1.6] - 2026-03-24
11
21
 
12
22
  ### Fixed
@@ -22,7 +32,8 @@ and this gem adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
22
32
 
23
33
  ### Changed
24
34
  - Fix README badges to match template (Tests, Gem Version, License)
25
- n## [0.1.3] - 2026-03-22
35
+
36
+ ## [0.1.3] - 2026-03-22
26
37
 
27
38
  ### Changed
28
39
  - Add License badge to README
data/README.md CHANGED
@@ -27,7 +27,7 @@ gem install philiprehberger-struct_kit
27
27
  ## Usage
28
28
 
29
29
  ```ruby
30
- require 'philiprehberger/struct_kit'
30
+ require "philiprehberger/struct_kit"
31
31
 
32
32
  User = Philiprehberger::StructKit.define do
33
33
  field :name, String
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module StructKit
5
- VERSION = '0.1.6'
5
+ VERSION = '0.1.8'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-struct_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - philiprehberger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-24 00:00:00.000000000 Z
11
+ date: 2026-03-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Define data classes with typed fields, default values, validation rules,
14
14
  and pattern matching support. Immutable by default with keyword-only construction,