vagrant-docker-networks-manager 0.1.1 → 1.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7044f6a6b9befe363517993337345f505ef80885bbfc2db3bc5a5d77ecda3cd9
4
- data.tar.gz: d4a4b07721fd667d047c34f5320937d96997e9e05f6791b7111258c527b7b803
3
+ metadata.gz: cb0deda2f9c82ac26857e5a10d55e5405f00061f14d4d64a6b2135d325731aa1
4
+ data.tar.gz: 9ec65c7dab91d4c2190fb87d464d4163b5c26e90668fd289e65164910e9e3dbf
5
5
  SHA512:
6
- metadata.gz: 18474f6bd81e297b6bb482b97fb452247157568a07220ccf8d8675c14a38fac8620d4974a7ff296039b24c052c5c870c1f8fa6fc635b5a478e2b77554771eee2
7
- data.tar.gz: e5208a0189d8a968c55d746f9e93d74b5d7876331df4b08a8da83553a67d0dd50304438868cd94ab2bd2ea1d4bd9122e3f39990af3a756d5e759f9253a501114
6
+ metadata.gz: 395739810f6d30c350c37fbcd20c3aa361fdce15483ba661ec482ddf9cae762d22efa13ad27b9dc01f88b664113334f6a593df8a064e66920c7ba2c301f7a546
7
+ data.tar.gz: d4c7c593cefbc5d76970b19bca33bd7ae3fcc92e56bd4d988e311222b06927ed955c4ac2cfede98e100aac905a858a289ce27a1a608872c72e19af9b211bee16
data/CHANGELOG.md CHANGED
@@ -1,16 +1,8 @@
1
1
  # Changelog
2
2
 
3
- ## [0.1.1](https://github.com/julienpoirou/vagrant-docker-networks-manager/compare/v0.1.0...v0.1.1) (2025-08-17)
3
+ ## 1.0.0 (2025-08-18)
4
4
 
5
5
 
6
- ### CI 🧑‍💻
6
+ ### Fonctionnalités
7
7
 
8
- * **release-please:** Add issues:write permission ([1c959e0](https://github.com/julienpoirou/vagrant-docker-networks-manager/commit/1c959e04ac86bc7a81363cf4029e0dc52acfc5f7))
9
- * **release-please:** Point to dotfiles config ([d123be2](https://github.com/julienpoirou/vagrant-docker-networks-manager/commit/d123be274d8aac8d4f2de2de40df976b58f29a2e))
10
- * **release-please:** Use generic updater for VERSION file ([#3](https://github.com/julienpoirou/vagrant-docker-networks-manager/issues/3)) ([1cc3003](https://github.com/julienpoirou/vagrant-docker-networks-manager/commit/1cc30033cef9b8be87255c45dd82a1ebe1877e7f))
11
-
12
-
13
- ### Maintenance 🧹
14
-
15
- * **ci:** Unblock CI => RSpec shim & RuboCop config baseline ([#1](https://github.com/julienpoirou/vagrant-docker-networks-manager/issues/1)) ([2e4a1df](https://github.com/julienpoirou/vagrant-docker-networks-manager/commit/2e4a1df9d0d46063c908765d7fbfd17a55fe3f9a))
16
- * **init:** Bootstrap plugin, CI, CodeQL, Release, Docs ([2b71a69](https://github.com/julienpoirou/vagrant-docker-networks-manager/commit/2b71a69e2b1eb1dd87cdf75b6e9ed1c350afd366))
8
+ * **build:** Push new version ([1e2e7ed](https://github.com/julienpoirou/vagrant-docker-networks-manager/commit/1e2e7ed15ee885ba63d923c00b1413d6edf85dff))
data/README.md CHANGED
@@ -164,6 +164,7 @@ Commands:
164
164
  list [--json]
165
165
  prune [--yes]
166
166
  rename <old> <new> [<subnet>] [--yes]
167
+ version
167
168
 
168
169
  Global options:
169
170
  --json # machine-readable output
@@ -1 +1 @@
1
- 0.1.1
1
+ 1.0.0
@@ -3,8 +3,8 @@
3
3
  module VagrantDockerNetworksManager
4
4
  VERSION = begin
5
5
  path = File.expand_path("VERSION", __dir__)
6
- File.exist?(path) ? File.read(path).strip : "0.1.0"
6
+ File.exist?(path) ? File.read(path).strip : "0.0.0"
7
7
  rescue
8
- "0.1.0"
8
+ "0.0.0"
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-docker-networks-manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julien Poirou