mixlib-install 3.3.3 → 3.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/VERSION +1 -1
- data/lib/mixlib/install/generator/powershell/scripts/helpers.ps1.erb +3 -3
- data/lib/mixlib/install/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3530b8664a5c5ba44ac1abd9440de49a4b76f4fa
|
4
|
+
data.tar.gz: 503decdbfb121675d4dbdd0375af88072ff1ffb7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb353ccde502f830a12fede76487cf0cebf42bd2a871cc3b602b24e6ce4bfb8658970c8bc6262b2396fbf461453a46a7324c276d1d11385b5d13734351d39f45
|
7
|
+
data.tar.gz: 611490147bcd15b961965c29b75f5b9fada9fc39508b5938f4fd0645f5d25618093e56f3a70982fc2da6afbca9afa088d18fb51cff87ee6729e78d78c2f3b289
|
data/CHANGELOG.md
CHANGED
@@ -1,11 +1,16 @@
|
|
1
1
|
# Mixlib::Install Changes
|
2
2
|
|
3
|
+
<!-- latest_release 3.3.4 -->
|
4
|
+
## [v3.3.4](https://github.com/chef/mixlib-install/tree/v3.3.4) (2017-08-10)
|
5
|
+
|
6
|
+
#### Merged Pull Requests
|
7
|
+
- Fix Windows architecture detection [#231](https://github.com/chef/mixlib-install/pull/231) ([rlaveycal](https://github.com/rlaveycal))
|
3
8
|
<!-- latest_release -->
|
9
|
+
|
4
10
|
## [v3.3.3](https://github.com/chef/mixlib-install/tree/v3.3.3) (2017-08-02)
|
5
11
|
|
6
12
|
#### Merged Pull Requests
|
7
13
|
- mixlib-versioning backwards compatability for PartialSemVer support [#229](https://github.com/chef/mixlib-install/pull/229) ([wrightp](https://github.com/wrightp))
|
8
|
-
<!-- latest_release -->
|
9
14
|
|
10
15
|
|
11
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.3.
|
1
|
+
3.3.4
|
@@ -27,11 +27,11 @@ function Get-PlatformArchitecture {
|
|
27
27
|
}
|
28
28
|
|
29
29
|
function Get-Win32OS {
|
30
|
-
if(!$
|
30
|
+
if(!$global:win32OS)
|
31
31
|
{
|
32
|
-
$
|
32
|
+
$global:win32OS = Get-WMIQuery win32_operatingsystem
|
33
33
|
}
|
34
|
-
$
|
34
|
+
$global:win32OS
|
35
35
|
}
|
36
36
|
|
37
37
|
function New-Uri {
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mixlib-install
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.3.
|
4
|
+
version: 3.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thom May
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-08-
|
12
|
+
date: 2017-08-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: mixlib-shellout
|
@@ -179,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
179
179
|
version: '0'
|
180
180
|
requirements: []
|
181
181
|
rubyforge_project:
|
182
|
-
rubygems_version: 2.
|
182
|
+
rubygems_version: 2.5.1
|
183
183
|
signing_key:
|
184
184
|
specification_version: 4
|
185
185
|
summary: A library for interacting with Chef Software Inc's software distribution
|