vagrant-git-hooks 0.2.0 → 0.2.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 +10 -0
- data/lib/vagrant-git-hooks/VERSION +1 -1
- data/lib/vagrant-git-hooks/version.rb +1 -1
- metadata +1 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2852b8865953b7da8fd7c3352101a809b151d3728ad0b1ba2b8fc364210a98b
|
|
4
|
+
data.tar.gz: e1c52b67644fe074d214485b0adf08667213492c58a65f1fd335c58f9f0b943d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6efbbfaaf4e0365b5a1ee8f55471e06f8c7b84c9df3bfc38379c4d7e7668774a74a0ac269cd5975ec9e997aa920e01ca4c603e012d1661a2abeea21c4e29e3a4
|
|
7
|
+
data.tar.gz: 97422a99ef3a0acaac69cec6c3a81997d76a375790a75a86d2dbf17b108edcec13fe95dc077f743b593dd8cce19b23369826e6cb280a19da93f2cbeedfaaff1a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.1](https://github.com/julienpoirou/vagrant-git-hooks/compare/v0.2.0...v0.2.1) (2026-07-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Corrections 🐛
|
|
7
|
+
|
|
8
|
+
* Keep lib/VERSION in sync via release-please's x-release-please-version annotation ([6bdce6b](https://github.com/julienpoirou/vagrant-git-hooks/commit/6bdce6b94e35b9abe82970a1fcd638734b65a341))
|
|
9
|
+
* Keep lib/VERSION in sync via release-please's x-release-please-version annotation ([e2d7c73](https://github.com/julienpoirou/vagrant-git-hooks/commit/e2d7c73ec13eecfb281f57843be54395420a14e1))
|
|
10
|
+
* Keep lib/VERSION in sync via release-please's x-release-please-version annotation ([fc800f9](https://github.com/julienpoirou/vagrant-git-hooks/commit/fc800f9feb506660d589af809b2902a90fa46d90))
|
|
11
|
+
* Keep lib/VERSION in sync via release-please's x-release-please-version annotation ([1b3e652](https://github.com/julienpoirou/vagrant-git-hooks/commit/1b3e652cc0f593bd9d38d32bba3bc6423670b2d5))
|
|
12
|
+
|
|
3
13
|
## [0.2.0](https://github.com/julienpoirou/vagrant-git-hooks/compare/v0.1.0...v0.2.0) (2026-07-05)
|
|
4
14
|
|
|
5
15
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
|
@@ -4,7 +4,7 @@ module VagrantGitHooks
|
|
|
4
4
|
unless defined?(VERSION)
|
|
5
5
|
VERSION = begin
|
|
6
6
|
path = File.expand_path("VERSION", __dir__)
|
|
7
|
-
File.exist?(path) ? File.read(path).strip : "0.0.0"
|
|
7
|
+
File.exist?(path) ? File.read(path).split("#").first.strip : "0.0.0"
|
|
8
8
|
rescue StandardError
|
|
9
9
|
"0.0.0"
|
|
10
10
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-git-hooks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julien Poirou
|
|
@@ -87,7 +87,6 @@ metadata:
|
|
|
87
87
|
rubygems_mfa_required: 'true'
|
|
88
88
|
bug_tracker_uri: https://github.com/julienpoirou/vagrant-git-hooks/issues
|
|
89
89
|
changelog_uri: https://github.com/julienpoirou/vagrant-git-hooks/blob/main/CHANGELOG.md
|
|
90
|
-
documentation_uri: https://www.rubydoc.info/gems/vagrant-git-hooks/
|
|
91
90
|
source_code_uri: https://github.com/julienpoirou/vagrant-git-hooks
|
|
92
91
|
homepage_uri: https://github.com/julienpoirou/vagrant-git-hooks
|
|
93
92
|
post_install_message:
|