vagrant-trellis-cert 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github_changelog_generator +1 -1
- data/CHANGELOG.md +10 -1
- data/lib/vagrant_trellis_cert/command.rb +1 -1
- data/lib/vagrant_trellis_cert/identity.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: 83c5d83e4f63c1bebebccd223cdeb9473032f6e1
|
4
|
+
data.tar.gz: 5365bd3d4b5ca48ccc97f93ca9610543b51dd33d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ac107653c0b6aebe6c2685b8d86b800c851a27ae5641a1c61e8ac148e60372606beb4b7e4a4593a9c62859f14c72a00d45ab795b7d748978f61bbc6ea57748f
|
7
|
+
data.tar.gz: 485da83d584efa3110155687db91b0624713f78b1edabe08fdc7cecbc25eea0225fa540a25a20b4f7269a13d343b07e5f4feebde0d06f261ba0096c8b1572308
|
data/.github_changelog_generator
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
unreleased=true
|
2
|
-
future-release=
|
2
|
+
future-release=v0.1.1
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,17 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [
|
3
|
+
## [v0.1.1](https://github.com/TypistTech/vagrant-trellis-cert/tree/v0.1.1) (2017-09-12)
|
4
|
+
[Full Changelog](https://github.com/TypistTech/vagrant-trellis-cert/compare/v0.1.0...v0.1.1)
|
5
|
+
|
6
|
+
**Merged pull requests:**
|
7
|
+
|
8
|
+
- Fix: Uninitialized constant [\#5](https://github.com/TypistTech/vagrant-trellis-cert/pull/5) ([TangRufus](https://github.com/TangRufus))
|
9
|
+
|
10
|
+
## [v0.1.0](https://github.com/TypistTech/vagrant-trellis-cert/tree/v0.1.0) (2017-09-12)
|
4
11
|
**Merged pull requests:**
|
5
12
|
|
13
|
+
- Version bump 0.1.0 [\#4](https://github.com/TypistTech/vagrant-trellis-cert/pull/4) ([TangRufus](https://github.com/TangRufus))
|
14
|
+
- bundle exec rubocop --auto-correct [\#3](https://github.com/TypistTech/vagrant-trellis-cert/pull/3) ([TangRufus](https://github.com/TangRufus))
|
6
15
|
- first release [\#2](https://github.com/TypistTech/vagrant-trellis-cert/pull/2) ([TangRufus](https://github.com/TangRufus))
|
7
16
|
- Fix: Incorrect link [\#1](https://github.com/TypistTech/vagrant-trellis-cert/pull/1) ([TangRufus](https://github.com/TangRufus))
|
8
17
|
|
@@ -14,7 +14,7 @@ module VagrantTrellisCert
|
|
14
14
|
opts = OptionParser.new do |o|
|
15
15
|
o.banner = "Usage: vagrant trellis-cert [--path <path>]"
|
16
16
|
o.separator ""
|
17
|
-
o.version =
|
17
|
+
o.version = VagrantTrellisCert::Identity.version
|
18
18
|
o.program_name = "vagrant trellis-cert"
|
19
19
|
|
20
20
|
o.on("--path <path>", String, "Path to the Trellis root") do |path|
|