version_gem 1.0.1 → 1.0.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/version_gem/version.rb +1 -3
- data/lib/version_gem.rb +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2743c035006592c0f69c6aadd90a0b92f6117e7dff255e904caaa49c188505c
|
|
4
|
+
data.tar.gz: 954c7f45ccfa74232e9e87d9f772aef5fad889283bdde78c9aa4321b49149b41
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7abd21eb351d7f7654583ce7c07df67f95b6f930c5ad308f7b4167f2955b441b9533a73329fc8c487f1692d654c8144cb9fd98faa637c4cb0a6fa30d08312e3
|
|
7
|
+
data.tar.gz: 73b702bfa29ddd6595bfe434acbb6612c7cbaa3ed40d2bb507fd9f25a69bfd6607383436267fe60406d58762ba3dfa6eb381f4ddca85fe210e6e7cade6314867
|
data/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
13
13
|
|
|
14
14
|
### Removed
|
|
15
15
|
|
|
16
|
+
## [1.0.2] - 2022-06-23
|
|
17
|
+
### Added
|
|
18
|
+
- Delay loading of library code until after code coverage tool is loaded
|
|
19
|
+
|
|
16
20
|
## [1.0.1] - 2022-06-23
|
|
17
21
|
### Added
|
|
18
22
|
- CI Build improvements
|
|
@@ -24,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
24
28
|
### Added
|
|
25
29
|
- Initial release, with basic version parsing API
|
|
26
30
|
|
|
27
|
-
[Unreleased]: https://github.com/pboling/version_gem/compare/v1.0.
|
|
31
|
+
[Unreleased]: https://github.com/pboling/version_gem/compare/v1.0.2...HEAD
|
|
32
|
+
[1.0.2]: https://github.com/pboling/version_gem/compare/v1.0.1...v1.0.2
|
|
28
33
|
[1.0.1]: https://github.com/pboling/version_gem/compare/v1.0.0...v1.0.1
|
|
29
34
|
[1.0.0]: https://github.com/pboling/version_gem/compare/a3055964517c159bf214712940982034b75264be...v1.0.0
|
data/lib/version_gem/version.rb
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require_relative 'basic'
|
|
4
|
-
|
|
5
3
|
module VersionGem
|
|
6
4
|
module Version
|
|
7
|
-
VERSION = '1.0.
|
|
5
|
+
VERSION = '1.0.2'.freeze
|
|
8
6
|
# This would work in this gem, but not in external libraries,
|
|
9
7
|
# because version files are loaded in Gemspecs before bundler
|
|
10
8
|
# has a chance to load dependencies.
|
data/lib/version_gem.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: version_gem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Boling
|
|
@@ -124,10 +124,10 @@ licenses:
|
|
|
124
124
|
- MIT
|
|
125
125
|
metadata:
|
|
126
126
|
homepage_uri: https://github.com/pboling/version_gem
|
|
127
|
-
source_code_uri: https://github.com/pboling/version_gem/tree/v1.0.
|
|
128
|
-
changelog_uri: https://github.com/pboling/version_gem/blob/v1.0.
|
|
127
|
+
source_code_uri: https://github.com/pboling/version_gem/tree/v1.0.2
|
|
128
|
+
changelog_uri: https://github.com/pboling/version_gem/blob/v1.0.2/CHANGELOG.md
|
|
129
129
|
bug_tracker_uri: https://github.com/pboling/version_gem/issues
|
|
130
|
-
documentation_uri: https://www.rubydoc.info/gems/version_gem/1.0.
|
|
130
|
+
documentation_uri: https://www.rubydoc.info/gems/version_gem/1.0.2
|
|
131
131
|
wiki_uri: https://github.com/pboling/version_gem/wiki
|
|
132
132
|
rubygems_mfa_required: 'true'
|
|
133
133
|
post_install_message:
|