urn 2.0.0 → 2.0.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/CHANGELOG.md +5 -0
- data/lib/urn.rb +4 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1f64f26329dc83af54f880d096d82ea51d82d63
|
4
|
+
data.tar.gz: 7b303594caf4ca5614175b579470689d9dcc4854
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 648c36a28d4828908af24695d39a28d74f92c56a5caafc0b70a6cc268d6caf1079094014cda67dcbaba3e6a855a021dbada5d42bb51aa526dcd061a2017dd3b3
|
7
|
+
data.tar.gz: d8808e3775387cfff3f45c6ad36197c22f32bc59e74dc4819a2ef4fc23286c697c0f2eb8086dae9ac33f1d5f680efa20e612a8c845e58cb76b1924f7a0caa44b
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
All notable changes to this project will be documented in this file. This
|
3
3
|
project adheres to [Semantic Versioning](http://semver.org/).
|
4
4
|
|
5
|
+
## [2.0.1] - 2016-03-24
|
6
|
+
### Fixed
|
7
|
+
- `URN()` shortcut works on classes without `Object` as ancestor.
|
8
|
+
|
5
9
|
## [2.0.0] - 2016-03-22
|
6
10
|
### Changed
|
7
11
|
- Only return `URN` instances for valid `URN`s at creation. Raise `URN::InvalidURNError` otherwise.
|
@@ -64,6 +68,7 @@ URN(URN('urn:foo:bar'))
|
|
64
68
|
### Added
|
65
69
|
- First version with basic implementation.
|
66
70
|
|
71
|
+
[2.0.1]: https://github.com/altmetric/urn/releases/tag/v2.0.1
|
67
72
|
[2.0.0]: https://github.com/altmetric/urn/releases/tag/v2.0.0
|
68
73
|
[1.0.0]: https://github.com/altmetric/urn/releases/tag/v1.0.0
|
69
74
|
[0.1.3]: https://github.com/altmetric/urn/releases/tag/v0.1.3
|
data/lib/urn.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: urn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ana Castro
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2016-03-
|
13
|
+
date: 2016-03-24 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|