easy_tags 0.2.1 → 0.2.2
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/CHANGELOG.md +6 -1
- data/lib/easy_tags/taggable_context.rb +1 -3
- data/lib/easy_tags/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb06e1ee49d89ee14b96399332522ffe2a1992d0617ffc21d0205f03d3420d4a
|
|
4
|
+
data.tar.gz: 6d80b72229751717a9c6b2103285ba9666cad97147d1bbe6789ef3c0b75d85c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79e003d812d2f74ffdff9355ad09619cbfc8a5ea21cecccff36fcf0fee825a041897146c791bddf58c9b1b94ccf5d7704c86256c80e4666c4ae525ecf5148c4f
|
|
7
|
+
data.tar.gz: 3804f90c2bc81ce007f59a8d710c2f2749df7cd3cc9a2316b818bb4178731700bd8830528f9c0622e1c1d948e919f7518c43380076047e8c9cdf010adffb389e
|
data/CHANGELOG.md
CHANGED
|
@@ -6,9 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.2.2] - 2019-10-24
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed inspect and compare for context objects (delegate to tags list) that may have affected debug and testing
|
|
12
|
+
|
|
9
13
|
## [0.2.1] - 2019-10-24
|
|
10
14
|
### Fixed
|
|
11
|
-
-
|
|
15
|
+
- Fixed `.add` and `.remove` methods not implementing properly dirty behavior
|
|
12
16
|
|
|
13
17
|
## [0.2.0] - 2019-09-12
|
|
14
18
|
### Added
|
|
@@ -18,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
18
22
|
Initial release
|
|
19
23
|
|
|
20
24
|
[Unreleased]: https://github.com/iiwo/easy_tagscompare/v0.2.0...HEAD
|
|
25
|
+
[0.2.1]: https://github.com/iiwo/easy_tags/compare/v0.2.1...v0.2.2
|
|
21
26
|
[0.2.1]: https://github.com/iiwo/easy_tags/compare/v0.2.0...v0.2.1
|
|
22
27
|
[0.2.0]: https://github.com/iiwo/easy_tags/compare/v0.1.0...v0.2.0
|
|
23
28
|
[0.1.0]: https://github.com/iiwo/easy_tags/releases/tag/v0.1.0
|
data/lib/easy_tags/version.rb
CHANGED