hashdiff 1.2.0 → 1.2.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 +4 -4
- data/Gemfile +1 -1
- data/changelog.md +28 -24
- data/lib/hashdiff/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99e198ac76f687f33cb2537c32bd81ccdd45798502cba565a624d1107a7e85ca
|
4
|
+
data.tar.gz: 7eba9f454570311e7b784d3da51db6827331f6e9c73d98d113b407d57bc60626
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8bf11d2563db1d99348a17bd6074e51cfd35dc95968bf43eca5f115b7af7547c5a08457b031b880442e4d8111343d3e096c8d5075c83a63c858fcd8627d4140
|
7
|
+
data.tar.gz: 6b318cd78d7f8dac01d1fea139fbc81d4724dc2c9a7f4cb0b21d5c54b38da5384908e6ba91b40503d7c501d596d4f91ecaf348122679f62fb91f0a2dc6e8e30a
|
data/Gemfile
CHANGED
data/changelog.md
CHANGED
@@ -1,23 +1,27 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## v1.2.1 2025-09-06
|
4
|
+
|
5
|
+
* Use HTTPS for the source in the Gemfile [#101](https://github.com/liufengyun/hashdiff/issues/101) ([@krzysiek1507](https://github.com/krzysiek1507))
|
6
|
+
|
3
7
|
## v1.2.0 2025-5-20
|
4
8
|
|
5
|
-
* Added :preserve_key_order option to maintain original hash key order #99 (@robkiessling)
|
9
|
+
* Added :preserve_key_order option to maintain original hash key order [#99](https://github.com/liufengyun/hashdiff/issues/99) ([@robkiessling](https://github.com/robkiessling))
|
6
10
|
|
7
11
|
## v1.1.2 2024-11-12
|
8
12
|
|
9
|
-
* Fix bundler cache #96 (@olleolleolle)
|
10
|
-
* Quote the '3.0' in YAML #95 (@olleolleolle)
|
11
|
-
* Fix version in source code #97 (@liufengyun)
|
13
|
+
* Fix bundler cache [#96](https://github.com/liufengyun/hashdiff/issues/96) ([@olleolleolle](https://github.com/olleolleolle))
|
14
|
+
* Quote the '3.0' in YAML [#95](https://github.com/liufengyun/hashdiff/issues/95) ([@olleolleolle](https://github.com/olleolleolle))
|
15
|
+
* Fix version in source code [#97](https://github.com/liufengyun/hashdiff/issues/97) ([@liufengyun](https://github.com/liufengyun))
|
12
16
|
|
13
17
|
## v1.1.1 2024-08-02
|
14
18
|
|
15
|
-
* Fix bug in ignore_keys option #88 (@Matzfan)
|
16
|
-
* Exclude spec files from gem package #94 (@amatsuda)
|
19
|
+
* Fix bug in ignore_keys option [#88](https://github.com/liufengyun/hashdiff/issues/88) ([@Matzfan](https://github.com/Matzfan))
|
20
|
+
* Exclude spec files from gem package [#94](https://github.com/liufengyun/hashdiff/issues/94) ([@amatsuda](https://github.com/amatsuda))
|
17
21
|
|
18
22
|
## v1.1.0 2023-12-14
|
19
23
|
|
20
|
-
* Add ignore_keys option (#86 @Matzfan)
|
24
|
+
* Add ignore_keys option ([#86](https://github.com/liufengyun/hashdiff/issues/86) [@Matzfan](https://github.com/Matzfan))
|
21
25
|
* Remove pinned version of rake < 11
|
22
26
|
* Bump rspec dep ~> 3.5
|
23
27
|
* Bump rubocop dep >= 1.52.1
|
@@ -29,52 +33,52 @@
|
|
29
33
|
|
30
34
|
## v1.0.0 2019-06-06
|
31
35
|
|
32
|
-
* Fix typo in readme (#72 @koic)
|
33
|
-
* Fix Rubocop offence (#73 @koic)
|
34
|
-
* Bumps version to v1.0.0 (#74 @jfelchner)
|
36
|
+
* Fix typo in readme ([#72](https://github.com/liufengyun/hashdiff/issues/72) [@koic](https://github.com/koic))
|
37
|
+
* Fix Rubocop offence ([#73](https://github.com/liufengyun/hashdiff/issues/73) [@koic](https://github.com/koic))
|
38
|
+
* Bumps version to v1.0.0 ([#74](https://github.com/liufengyun/hashdiff/issues/74) [@jfelchner](https://github.com/jfelchner))
|
35
39
|
|
36
40
|
## v1.0.0.beta1 2019-06-06
|
37
41
|
|
38
|
-
* fix warnings in ci (#69 @y-yagi)
|
39
|
-
* drop warnings of the constant change (#70 @jfelchner)
|
42
|
+
* fix warnings in ci ([#69](https://github.com/liufengyun/hashdiff/issues/69) [@y-yagi](https://github.com/y-yagi))
|
43
|
+
* drop warnings of the constant change ([#70](https://github.com/liufengyun/hashdiff/issues/70) [@jfelchner](https://github.com/jfelchner))
|
40
44
|
|
41
45
|
## v0.4.0 2019-05-28
|
42
46
|
|
43
|
-
* refactoring (#56 #57 #59 #61 krzysiek1507)
|
44
|
-
* fix typo in README (#64 @pboling)
|
45
|
-
* change HashDiff to Hashdiff (#65 @jfelchner)
|
47
|
+
* refactoring ([#56](https://github.com/liufengyun/hashdiff/issues/56) [#57](https://github.com/liufengyun/hashdiff/issues/57) [#59](https://github.com/liufengyun/hashdiff/issues/59) [#61](https://github.com/liufengyun/hashdiff/issues/61) [@krzysiek1507](https://github.com/krzysiek1507))
|
48
|
+
* fix typo in README ([#64](https://github.com/liufengyun/hashdiff/issues/64) [@pboling](https://github.com/pboling))
|
49
|
+
* change HashDiff to Hashdiff ([#65](https://github.com/liufengyun/hashdiff/issues/65) [@jfelchner](https://github.com/jfelchner))
|
46
50
|
|
47
51
|
## v0.3.9 2019-04-22
|
48
52
|
|
49
|
-
* Performance tweak (thanks @krzysiek1507: #51 #52 #53)
|
53
|
+
* Performance tweak (thanks [@krzysiek1507](https://github.com/krzysiek1507): [#51](https://github.com/liufengyun/hashdiff/issues/51) [#52](https://github.com/liufengyun/hashdiff/issues/52) [#53](https://github.com/liufengyun/hashdiff/issues/53))
|
50
54
|
|
51
55
|
## v0.3.8 2018-12-30
|
52
56
|
|
53
|
-
* Add Rubocop and drops Ruby 1.9 support #47
|
57
|
+
* Add Rubocop and drops Ruby 1.9 support [#47](https://github.com/liufengyun/hashdiff/issues/47)
|
54
58
|
|
55
59
|
## v0.3.7 2017-10-08
|
56
60
|
|
57
|
-
* remove 1.8.7 support from gemspec #39
|
61
|
+
* remove 1.8.7 support from gemspec [#39](https://github.com/liufengyun/hashdiff/issues/39)
|
58
62
|
|
59
63
|
## v0.3.6 2017-08-22
|
60
64
|
|
61
|
-
* add option `use_lcs` #35
|
65
|
+
* add option `use_lcs` [#35](https://github.com/liufengyun/hashdiff/issues/35)
|
62
66
|
|
63
67
|
## v0.3.5 2017-08-06
|
64
68
|
|
65
|
-
* add option `array_path` #34
|
69
|
+
* add option `array_path` [#34](https://github.com/liufengyun/hashdiff/issues/34)
|
66
70
|
|
67
71
|
## v0.3.4 2017-05-01
|
68
72
|
|
69
|
-
* performance improvement of `#similar?` #31
|
73
|
+
* performance improvement of `#similar?` [#31](https://github.com/liufengyun/hashdiff/issues/31)
|
70
74
|
|
71
75
|
## v0.3.2 2016-12-27
|
72
76
|
|
73
|
-
* replace `Fixnum` by `Integer` #28
|
77
|
+
* replace `Fixnum` by `Integer` [#28](https://github.com/liufengyun/hashdiff/issues/28)
|
74
78
|
|
75
79
|
## v0.3.1 2016-11-24
|
76
80
|
|
77
|
-
* fix an error when a hash has mixed types #26
|
81
|
+
* fix an error when a hash has mixed types [#26](https://github.com/liufengyun/hashdiff/issues/26)
|
78
82
|
|
79
83
|
## v0.3.0 2016-2-11
|
80
84
|
|
@@ -82,7 +86,7 @@
|
|
82
86
|
|
83
87
|
## v0.2.3 2015-11-5
|
84
88
|
|
85
|
-
* improve performance of LCS algorithm #12
|
89
|
+
* improve performance of LCS algorithm [#12](https://github.com/liufengyun/hashdiff/issues/12)
|
86
90
|
|
87
91
|
## v0.2.2 2014-10-6
|
88
92
|
|
data/lib/hashdiff/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hashdiff
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Liu Fengyun
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bluecloth
|