philiprehberger-schema_validator 0.3.2 → 0.3.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: 35bb923a89c62125188659f02420a92fe887902eaa0708e2224748785d7600d5
4
- data.tar.gz: '006509819a5ed58493e9919a303c26be8c21cb7da90921f324a970377e1159e8'
3
+ metadata.gz: d369b9b05d21672c0daeb5c6b4da6af7b42678047051178e910e54d690f86abd
4
+ data.tar.gz: 22dfdff395b61d63fcacce57c41456b088d06f02a1e03e62faf9a90b5cb01684
5
5
  SHA512:
6
- metadata.gz: 0aaa400e8b96514dabf0cdeb7f077fd3ca6b972cac8f75a1fc9877458d40da8691af83e4173b357c128d8fc4b8c18ce282e339891b0013638690d88db8ffa7a0
7
- data.tar.gz: 87bcd261785b2da0d60b0789e6e4f28b5d368b40e0342beb22fb1322bbcc341098ef7bcd2a50c3263e1437f99844e772dfede2b0fee06bc7220ea390783ad191
6
+ metadata.gz: 736e2ba015bef5b10907c67ae56da557b82437fd107124ba29c0b6a5fca5144b6965d11fb95833c4f02c5e070cf38700679060509dc47fd79fd218dc91337c2f
7
+ data.tar.gz: 8883f55cd1676ce6cbf2f832746607cb11547a13738d62e4b55974fdc885ee8f584b07c8395db6ae5bfdc8430edaad0c98b572c25e33f0ecb067c8d7f51d5161
data/CHANGELOG.md CHANGED
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.4] - 2026-03-26
11
+
12
+ ### Fixed
13
+ - Add Sponsor badge to README
14
+ - Fix license section link format
15
+
16
+ ## [0.3.3] - 2026-03-24
17
+
18
+ ### Fixed
19
+ - Align README one-liner with gemspec summary
20
+
10
21
  ## [0.3.2] - 2026-03-24
11
22
 
12
23
  ### Fixed
data/README.md CHANGED
@@ -3,8 +3,9 @@
3
3
  [![Tests](https://github.com/philiprehberger/rb-schema-validator/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-schema-validator/actions/workflows/ci.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/philiprehberger-schema_validator.svg)](https://rubygems.org/gems/philiprehberger-schema_validator)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-schema-validator)](LICENSE)
6
+ [![Sponsor](https://img.shields.io/badge/sponsor-GitHub%20Sponsors-ec6cb9)](https://github.com/sponsors/philiprehberger)
6
7
 
7
- Lightweight schema validation for Ruby hashes with type checking and coercion
8
+ Lightweight schema validation for hashes with type coercion
8
9
 
9
10
  ## Requirements
10
11
 
@@ -281,4 +282,4 @@ bundle exec rubocop
281
282
 
282
283
  ## License
283
284
 
284
- MIT
285
+ [MIT](LICENSE)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module SchemaValidator
5
- VERSION = "0.3.2"
5
+ VERSION = "0.3.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-schema_validator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.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-24 00:00:00.000000000 Z
11
+ date: 2026-03-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A zero-dependency Ruby gem for validating hash data against schemas with
14
14
  type checking, coercion, required/optional fields, and custom validators.