maremma 4.9.2 → 4.9.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 +4 -4
- data/CHANGELOG.md +9 -5
- data/Gemfile.lock +1 -1
- data/lib/maremma.rb +3 -1
- data/lib/maremma/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: b434f52f03f14c1210e58fe2b47d9abd29fb7195a9691617109552368f42c70d
|
|
4
|
+
data.tar.gz: 21d34076acf4a146965fa8a0b3b70f151f8d74cbf18e925e8ed79aaa518ecc19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4008b8df539b95e01ab7bc2ae52e81dfd1675acaae2156932a4101443d238f743cf018bd0c5f2b328c442d214002a827b5f6898ddb71ab0b3a271c9ef80281d6
|
|
7
|
+
data.tar.gz: 70736b2bcdbac3ebbe4f305a17f510b7ec97c928a32cb2c5925ffbe029f5b1887e34b36bdc0d1dddb35cda34a5b5827bc8a912db1ef8e5a5c3a084289864326e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.9.2](https://github.com/datacite/maremma/tree/4.9.2) (2021-06-07)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/4.9.1...4.9.2)
|
|
6
|
+
|
|
3
7
|
## [4.9.1](https://github.com/datacite/maremma/tree/4.9.1) (2021-06-06)
|
|
4
8
|
|
|
5
9
|
[Full Changelog](https://github.com/datacite/maremma/compare/4.9...4.9.1)
|
|
@@ -271,15 +275,15 @@
|
|
|
271
275
|
|
|
272
276
|
## [v.3.0](https://github.com/datacite/maremma/tree/v.3.0) (2016-11-25)
|
|
273
277
|
|
|
274
|
-
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.
|
|
278
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.5...v.3.0)
|
|
275
279
|
|
|
276
|
-
## [v.2.5.
|
|
280
|
+
## [v.2.5.5](https://github.com/datacite/maremma/tree/v.2.5.5) (2016-11-23)
|
|
277
281
|
|
|
278
|
-
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.
|
|
282
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.4...v.2.5.5)
|
|
279
283
|
|
|
280
|
-
## [v.2.5.
|
|
284
|
+
## [v.2.5.4](https://github.com/datacite/maremma/tree/v.2.5.4) (2016-11-23)
|
|
281
285
|
|
|
282
|
-
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.3...v.2.5.
|
|
286
|
+
[Full Changelog](https://github.com/datacite/maremma/compare/v.2.5.3...v.2.5.4)
|
|
283
287
|
|
|
284
288
|
## [v.2.5.3](https://github.com/datacite/maremma/tree/v.2.5.3) (2016-11-18)
|
|
285
289
|
|
data/Gemfile.lock
CHANGED
data/lib/maremma.rb
CHANGED
|
@@ -229,7 +229,9 @@ module Maremma
|
|
|
229
229
|
end
|
|
230
230
|
|
|
231
231
|
def self.parse_response(string, options = {})
|
|
232
|
-
string = string.dup.encode(Encoding.find("UTF-8"), invalid: :replace,
|
|
232
|
+
string = string.dup.encode(Encoding.find("UTF-8"), invalid: :replace,
|
|
233
|
+
undef: :replace,
|
|
234
|
+
replace: "?")
|
|
233
235
|
return string if options[:raw]
|
|
234
236
|
|
|
235
237
|
from_json(string) || from_xml(string) || from_string(string)
|
data/lib/maremma/version.rb
CHANGED