latest_version 0.1.2 → 0.1.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 +8 -1
- data/lib/latest_version.rb +1 -1
- data/lib/latest_version/cli.rb +1 -1
- data/lib/latest_version/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: 5fa8085b7889c7b5a1cca136a75bcc5e152c9d52
|
|
4
|
+
data.tar.gz: 81883c693d29eba5420a3d5487460760a9726954
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d1622ad12b699d7d82e95741f2ebd6221e03824dbf4ac3346dafc5753c7f14c37b656fefd0130f7530e8e4ec83fd7a416e7ace22392b3653be2adaaec8ca5228
|
|
7
|
+
data.tar.gz: 965390787d87ce376bb165368c2808705c968ed62f33fefcfce6f02e044a92ad41b38b7740dcd456870dd192bf0fe4e6f7470c046e6ee4200d43f139eb00055e
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.3] - 2020-02-19
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Update syntax to `LatestVersion.of(library)`.
|
|
15
|
+
|
|
10
16
|
## [0.1.2] - 2020-02-18
|
|
11
17
|
|
|
12
18
|
### Added
|
|
@@ -26,7 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
26
32
|
|
|
27
33
|
- Support for ruby, rails and python.
|
|
28
34
|
|
|
29
|
-
[unreleased]: https://github.com/zubin/latest_version/compare/v0.1.
|
|
35
|
+
[unreleased]: https://github.com/zubin/latest_version/compare/v0.1.3...HEAD
|
|
36
|
+
[0.1.3]: https://github.com/zubin/latest_version/compare/v0.1.2...v0.1.3
|
|
30
37
|
[0.1.2]: https://github.com/zubin/latest_version/compare/v0.1.1...v0.1.2
|
|
31
38
|
[0.1.1]: https://github.com/zubin/latest_version/compare/v0.1.0...v0.1.1
|
|
32
39
|
[0.1.0]: https://github.com/zubin/latest_version/releases/tag/v0.1.0
|
data/lib/latest_version.rb
CHANGED
data/lib/latest_version/cli.rb
CHANGED
|
@@ -12,7 +12,7 @@ module LatestVersion
|
|
|
12
12
|
|
|
13
13
|
LatestVersion.supported_libraries.each do |library|
|
|
14
14
|
desc library, "Returns latest version of #{library}"
|
|
15
|
-
define_method(library) { puts LatestVersion.
|
|
15
|
+
define_method(library) { puts LatestVersion.of(library) }
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
desc 'completion SHELL', "Installs shell completion"
|