mixlib-install 3.8.0 → 3.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d3128969bf6312ef2f512c1e57aff582305a302a
4
- data.tar.gz: c0316fa47b9dd931c40dc02a1514a2d1e991f9b1
3
+ metadata.gz: 18efadcbfa302f61d57f2c5870d63f32f909a1d3
4
+ data.tar.gz: 47dec1565125b8b1bc7def1a250d33573df8140d
5
5
  SHA512:
6
- metadata.gz: 723b47838452d03e703cfe2679be32a8e1e62ec7fb3c1c6b2058bed3b1266632e6e2591df53d396b55b3ab1a6f49bce17b4c1fb41f2a75744cc8fa6f12006898
7
- data.tar.gz: e65dd4a6b9c987672b6a0898bda5121561cb2749088b10890facd508afbf45c05e1f23b7da081fb6eb8a16d0a659e246b999ab147f8d028ca4a4baad14dabf9c
6
+ metadata.gz: cc9adf6054dbe1755131566760e75b96798fe0dc0b5658dae4a18558d416c456567147af714cfaad0ee3003330ce0aa6e12d824eab147040d22ea64cf1c824cf
7
+ data.tar.gz: 07a84bef936628ccb7eb1fd0c52f3ca6bffa4b98bbf33b25fca3363ebce19578081049c5afc235914dc5d7c8b937df9ce78d5308ea764b7aa6ebf038bce6172d
@@ -1,8 +1,8 @@
1
1
  slack:
2
- notify_channel: eng-services-notify
2
+ notify_channel: jex-notify
3
3
 
4
4
  github:
5
- maintainer_group: chef/engineering-services
5
+ maintainer_group: chef/package-distribution-maintainers
6
6
  version_tag_format: v{{version}}
7
7
  minor_bump_labels:
8
8
  - "Version: Bump Minor"
@@ -1,3 +1,3 @@
1
1
  # Order is important. The last matching pattern has the most precedence.
2
2
 
3
- * @chef/engineering-services
3
+ * @chef/package-distribution-maintainers
@@ -1,11 +1,16 @@
1
1
  # Mixlib::Install Changes
2
2
 
3
- <!-- latest_release 3.8.0 -->
3
+ <!-- latest_release 3.9.0 -->
4
+ ## [v3.9.0](https://github.com/chef/mixlib-install/tree/v3.9.0) (2017-12-20)
5
+
6
+ #### Merged Pull Requests
7
+ - add amazon linux 2.0 platform detection support [#246](https://github.com/chef/mixlib-install/pull/246) ([wrightp](https://github.com/wrightp))
8
+ <!-- latest_release -->
9
+
4
10
  ## [v3.8.0](https://github.com/chef/mixlib-install/tree/v3.8.0) (2017-10-31)
5
11
 
6
12
  #### Merged Pull Requests
7
13
  - Add support for aarch64 [#244](https://github.com/chef/mixlib-install/pull/244) ([jeremiahsnapp](https://github.com/jeremiahsnapp))
8
- <!-- latest_release -->
9
14
 
10
15
  ## [v3.7.0](https://github.com/chef/mixlib-install/tree/v3.7.0) (2017-10-11)
11
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.8.0
1
+ 3.9.0
@@ -67,10 +67,14 @@ elif test -f "/etc/system-release"; then
67
67
  platform=`sed 's/^\(.\+\) release.\+/\1/' /etc/system-release | tr '[A-Z]' '[a-z]'`
68
68
  platform_version=`sed 's/^.\+ release \([.0-9]\+\).*/\1/' /etc/system-release | tr '[A-Z]' '[a-z]'`
69
69
  # amazon is built off of fedora, so act like RHEL
70
+ # Version 1. Example: Amazon Linux AMI release 2017.09
70
71
  if test "$platform" = "amazon linux ami"; then
71
- # FIXME: remove client side platform_version mangling and hard coded yolo, and remapping to deprecated "el"
72
72
  platform="el"
73
73
  platform_version="6.0"
74
+ # Version 2. Example: Amazon Linux release 2.0 (2017.12)
75
+ elif test "$platform" = "amazon linux"; then
76
+ platform="el"
77
+ platform_version="7.0"
74
78
  fi
75
79
  # Apple OS X
76
80
  elif test -f "/usr/bin/sw_vers"; then
@@ -1,5 +1,5 @@
1
1
  module Mixlib
2
2
  class Install
3
- VERSION = "3.8.0"
3
+ VERSION = "3.9.0"
4
4
  end
5
5
  end
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.8.0
4
+ version: 3.9.0
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-10-31 00:00:00.000000000 Z
12
+ date: 2017-12-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mixlib-shellout