civil 3.0.0 → 3.1.0
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 +7 -1
- data/lib/civil/service.rb +6 -0
- data/lib/civil/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89dbdb4fca3b3d46e9c9ed0836f5521db3f3a386
|
4
|
+
data.tar.gz: 388f7197da85282b823a4b7aefd0eb4d9ed27f9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 637edfe7906749aa616c7e2a6adf86f5f02707876e392753d96e306b0655db51001ad35be960103fdbc3f37063379e91d7766df78bf2b011dcc4bce9cac6f926
|
7
|
+
data.tar.gz: 88ad845c8730d3dab66ab14ca9ecef5b1ba04c892532c957d233070aa83fc328e3518fe98c2bdb318c5a0da4145dffa2dc66a9bae95cdd45b0e71b5702a0238b
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [3.1.0] - 2016-12-15
|
10
|
+
### Added
|
11
|
+
- `Civil::Service#merge_result(result)` merges conditions and meta from a
|
12
|
+
nested service call's result into the current service context.
|
13
|
+
|
9
14
|
## [3.0.0] - 2016-12-14
|
10
15
|
### Changed
|
11
16
|
- `Civil::Set` now renamed to `Civil::Array` and inherit from the `::Array`
|
@@ -63,7 +68,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
|
|
63
68
|
- Documentation and examples in README.md
|
64
69
|
- This changelog :-)
|
65
70
|
|
66
|
-
[Unreleased]: https://github.com/earksiinni/civil/compare/v3.
|
71
|
+
[Unreleased]: https://github.com/earksiinni/civil/compare/v3.1.0...HEAD
|
72
|
+
[3.1.0]: https://github.com/earksiinni/civil/compare/v3.0.0...v3.1.0
|
67
73
|
[3.0.0]: https://github.com/earksiinni/civil/compare/v2.1.0...v3.0.0
|
68
74
|
[2.1.0]: https://github.com/earksiinni/civil/compare/v2.0.0...v2.1.0
|
69
75
|
[2.0.0]: https://github.com/earksiinni/civil/compare/v1.1.0...v2.0.0
|
data/lib/civil/service.rb
CHANGED
data/lib/civil/version.rb
CHANGED