philiprehberger-differ 0.2.2 → 0.2.3

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: a2895233828f37deff74861ac0c8c0fb7b7f678c644aeda4b4db14344760c38e
4
- data.tar.gz: c1ebbe193bce2b499bbb9ad91f29a74949180a69de143440becb5d26b15acaf6
3
+ metadata.gz: 6f31f366923b23b8d6142309952c56d3e97103a49bb89fea257c525f0e1e1aca
4
+ data.tar.gz: d3b6aab2411555a81399114b11d02704835a4de12e2cea197f529dc61965243a
5
5
  SHA512:
6
- metadata.gz: 7a4c3e61b19d56fcb837339e4789b38ee3a2cfc32000a98d6f7ab5dd1f09b8730d694431ccfdf8416a506f2f34cec2106825b9144979f06f481e589ef52629b7
7
- data.tar.gz: 5ea7bea69ce7d9a0736cfda3fbd6034ecadb1b0d514908069a8ccc459064b7636fe47b16424739e6adc500f4222b106ab12d5da12c606887220c2e4f50004de1
6
+ metadata.gz: 1c2fb770069a51de724e2e4cce57872e811bc676ab0e8fc04da214c6ea1391ddeabbf025b18d78d75eb06ba010a0a2fba8991060c082f64de1fbf42690398167
7
+ data.tar.gz: 07e91805eabe8d84e6813c162aecae1d67d666e4d6a7eff9e4508841e8ade4fcc4bb73579db0eec896ab8ba6d0694f72ef0af70cb35bb0e66915c93de7b6a232
data/CHANGELOG.md CHANGED
@@ -1,17 +1,27 @@
1
1
  # Changelog
2
2
 
3
- ## 0.2.2
3
+ All notable changes to this gem will be documented in this file.
4
4
 
5
- - Revert gemspec to single-quoted strings per RuboCop default configuration
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
7
 
7
- ## 0.2.1
8
+ ## [Unreleased]
8
9
 
9
- - Fix RuboCop Style/StringLiterals violations in gemspec
10
+ ## [0.2.3] - 2026-03-24
10
11
 
11
- All notable changes to this gem will be documented in this file.
12
+ ### Fixed
13
+ - Fix Installation section quote style to double quotes
14
+ - Remove inline comments from Development section to match template
12
15
 
13
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
14
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
16
+ ## [0.2.2] - 2026-03-18
17
+
18
+ ### Changed
19
+ - Revert gemspec to single-quoted strings per RuboCop default configuration
20
+
21
+ ## [0.2.1] - 2026-03-18
22
+
23
+ ### Changed
24
+ - Fix RuboCop Style/StringLiterals violations in gemspec
15
25
 
16
26
  ## [0.2.0] - 2026-03-17
17
27
 
@@ -22,14 +32,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
32
  - JSON Patch formatter: `changeset.to_json_patch` for RFC 6902 operations
23
33
  - Nested array diff by key: `Differ.diff(a, b, array_key: :id)` matches elements by field
24
34
 
25
- ## [0.1.2]
35
+ ## [0.1.2] - 2026-03-16
26
36
 
37
+ ### Changed
27
38
  - Add License badge to README
28
39
  - Add bug_tracker_uri to gemspec
29
40
  - Add Requirements section to README
30
41
 
31
- ## [Unreleased]
32
-
33
42
  ## [0.1.0] - 2026-03-15
34
43
 
35
44
  ### Added
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # philiprehberger-differ
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/philiprehberger-differ.svg)](https://rubygems.org/gems/philiprehberger-differ)
4
3
  [![Tests](https://github.com/philiprehberger/rb-differ/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-differ/actions/workflows/ci.yml)
4
+ [![Gem Version](https://badge.fury.io/rb/philiprehberger-differ.svg)](https://rubygems.org/gems/philiprehberger-differ)
5
5
  [![License](https://img.shields.io/github/license/philiprehberger/rb-differ)](LICENSE)
6
6
 
7
7
  Deep structural diff for hashes, arrays, and nested objects in Ruby
@@ -15,7 +15,7 @@ Deep structural diff for hashes, arrays, and nested objects in Ruby
15
15
  Add to your Gemfile:
16
16
 
17
17
  ```ruby
18
- gem 'philiprehberger-differ'
18
+ gem "philiprehberger-differ"
19
19
  ```
20
20
 
21
21
  Or install directly:
@@ -156,8 +156,8 @@ Returns a Float between 0.0 (completely different) and 1.0 (identical).
156
156
 
157
157
  ```bash
158
158
  bundle install
159
- bundle exec rspec # Run tests
160
- bundle exec rubocop # Check code style
159
+ bundle exec rspec
160
+ bundle exec rubocop
161
161
  ```
162
162
 
163
163
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module Differ
5
- VERSION = '0.2.2'
5
+ VERSION = '0.2.3'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-differ
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
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-19 00:00:00.000000000 Z
11
+ date: 2026-03-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A Ruby library for deep structural diffing of hashes, arrays, and nested
14
14
  objects with apply/revert, JSON Patch output, similarity scoring, and configurable