vagrant-qemu 0.3.2 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5cf28812b77cd3e5b87bfc8fd01f1e1c2f112e5a98cb528103321df039e45e46
4
- data.tar.gz: 1581e6455fff4b467bb7a03707b804fdc072390c0d1fe4e8275a8097b3659c22
3
+ metadata.gz: ee5e88ebb3cd884abc825a1e7d9911f70e2539439806e8b9c41f7f6dacd38431
4
+ data.tar.gz: cd7ab93955848c5b575e4516b64a902aa9051d053bd9a468aad3f1dab37c269b
5
5
  SHA512:
6
- metadata.gz: b1fa789613c99fbd9fce98848933e8d2b36e39f4fe71670fc30b51bd1678e4c3a84808ce3c29714ad78155a8be5891b31544e0ab5afe44557ef0734e861b9b1c
7
- data.tar.gz: f4688e1ec563f474a0a599f8f141e74a49ebb1f4c2632bf9d407a4790687b5d1d995bccf3e5195eae6ffd2fee256696651a880b2c23d822cc1db73199b6fc7a4
6
+ metadata.gz: 6145c635a8363bf5c7f3aefed1533eb705d4193e9d03bd0a83707b36434791b223c8d4c8dcb3ce0494e4971c35cae74e1ccb9f23fdec6e96d4e803bbea8524fc
7
+ data.tar.gz: '08a89b1e3ec0bd8b3bd7d40d98ded3f8f4fdaa853970e4ec0bd6ad83acae269b0b42196569884354f38f6741d92510fa33c42dd258e28e03df1ffc4fc9d9c2a0'
data/CHANGELOG.md CHANGED
@@ -50,3 +50,8 @@
50
50
  # 0.3.2 (2022-09-20)
51
51
 
52
52
  * Use kill 0 to check whether a process is running
53
+
54
+ # 0.3.3 (2022-10-11)
55
+
56
+ * Fix a compatibility issue about ruby 3.x
57
+
@@ -111,7 +111,8 @@ module VagrantPlugins
111
111
  # user-defined
112
112
  cmd += options[:extra_qemu_args]
113
113
 
114
- execute(*cmd, {:detach => options[:no_daemonize]})
114
+ opts = {:detach => options[:no_daemonize]}
115
+ execute(*cmd, **opts)
115
116
  end
116
117
  end
117
118
 
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module QEMU
3
- VERSION = '0.3.2'
3
+ VERSION = '0.3.3'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-qemu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - ppggff
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-20 00:00:00.000000000 Z
11
+ date: 2022-10-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Enables Vagrant to manage machines with QEMU.
14
14
  email: pgf00a@gmail.com