Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #15 from vrivellino/vince/java-10.0.2
Browse files Browse the repository at this point in the history
Java 10.0.2
  • Loading branch information
vrivellino authored Jul 19, 2018
2 parents ff17d06 + 26d9fc9 commit 47f2f42
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 14 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Changelog

## 10.0.2 2018-07-19
- Java 10.0.2

## 10.0.1 2018-04-18

- Initial relase of JDK 10
- Initial release of JDK 10
- JDK 9 is [deprecated by Oracle](http://www.oracle.com/technetwork/java/javase/downloads/jdk9-downloads-3848520.html): *Java SE 9 has reached end of support. Users of Java SE 9 should switch to Java SE 10.*

## 9.0.4 2018-01-17
Expand Down
15 changes: 8 additions & 7 deletions attributes/bind.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
default['java_se']['release'] = '10.0.1'
default['java_se']['build'] = '10'
default['java_se']['hash'] = 'fb4372174a714e6b8c52526dc134031e'
# http://download.oracle.com/otn-pub/java/jdk/10.0.2+13/19aef61b38124481863b1413dce1855f/jdk-10.0.2_osx-x64_bin.dmg
default['java_se']['release'] = '10.0.2'
default['java_se']['build'] = '13'
default['java_se']['hash'] = '19aef61b38124481863b1413dce1855f'

# https://www.oracle.com/webfolder/s/digest/10-0-1checksum.html
default['java_se']['sha256']['tar'] = 'ae8ed645e6af38432a56a847597ac61d4283b7536688dbab44ab536199d1e5a4'
default['java_se']['sha256']['dmg'] = 'cf3d33be870788eed5bb5eeef8f52aa9d7601955c8742efbec0cf9fbd6245ceb'
default['java_se']['sha256']['exe'] = '9917df90549c8ebc0430dfe92478091ecff05e1a10edc708657e83a987727695'
# https://www.oracle.com/webfolder/s/digest/10-0-2checksum.html
default['java_se']['sha256']['tar'] = '6633c20d53c50c20835364d0f3e172e0cbbce78fff81867488f22a6298fa372b'
default['java_se']['sha256']['dmg'] = '2db323c9c93e7fb63e2ed7e06ce8150c32d782e3d0704be6274ebb2d298193aa'
default['java_se']['sha256']['exe'] = 'bd2aa173db14789ac0369ab32bf929679760cae9e04d751d5f914ac3ad36c129'
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
source_url 'https://github.com/vrivellino/chef-java_se' if respond_to?(:source_url)
issues_url 'https://github.com/vrivellino/chef-java_se/issues' if respond_to?(:issues_url)
chef_version '>= 12.1' if respond_to?(:chef_version)
version '10.0.1'
version '10.0.2'

supports 'centos'
supports 'debian'
Expand Down
6 changes: 3 additions & 3 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
require 'chefspec'
require 'chefspec/berkshelf'

BUILD = '10'.freeze
VERSION = '10.0.1'.freeze
HASH = 'fb4372174a714e6b8c52526dc134031e'.freeze
BUILD = '13'.freeze
VERSION = '10.0.2'.freeze
HASH = '19aef61b38124481863b1413dce1855f'.freeze

CACHE = Chef::Config[:file_cache_path]

Expand Down
2 changes: 1 addition & 1 deletion test/integration/alt_home/serverspec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'serverspec'

VERSION = '10.0.1'.freeze
VERSION = '10.0.2'.freeze

if (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM).nil?
set :backend, :exec
Expand Down
2 changes: 1 addition & 1 deletion test/integration/default/serverspec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'serverspec'

VERSION = '10.0.1'.freeze
VERSION = '10.0.2'.freeze

if (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM).nil?
set :backend, :exec
Expand Down

0 comments on commit 47f2f42

Please sign in to comment.