Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmorley committed Nov 4, 2016
1 parent 2cd5817 commit 53b4023
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bootstrap.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ If(!(Test-Path 'C:/opscode/chefdk/bin/chef')) {
$KITCHEN_DATA = "${env:TEMP}/kitchen/data"

# Install workup
C:/opscode/chefdk/bin/chef gem install "${KITCHEN_DATA}/pkg/workup-0.1.5.gem"
C:/opscode/chefdk/bin/chef gem install "${KITCHEN_DATA}/pkg/workup-0.1.6.gem"

# Make a policyfile to test git
If(!(Test-Path -Path '~/.workup')){ New-Item '~/.workup' -Type Directory }
Expand Down
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ else
fi

# Install workup
/opt/chefdk/bin/chef gem install /tmp/kitchen/data/pkg/workup-0.1.5.gem -V
/opt/chefdk/bin/chef gem install /tmp/kitchen/data/pkg/workup-0.1.6.gem -V

# Make a policyfile to test git
mkdir -p ~/.workup
Expand Down
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ If (!([Security.Principal.WindowsPrincipal] `

Write-Host 'Bootstrapping Workup'

$WORKUP_VERSION = "0.1.5"
$WORKUP_VERSION = "0.1.6"
$WORKUP_URL = "https://github.com/cvent/workup/releases/download/v${WORKUP_VERSION}/workup.msi"
$WORKUP_DIR = Join-Path ${HOME} '.workup'

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ echo_error() {

echo 'Bootstrapping Workup'

WORKUP_VERSION="0.1.5"
WORKUP_VERSION="0.1.6"
WORKUP_URL="https://github.com/cvent/workup/releases/download/v${WORKUP_VERSION}/workup.pkg"
WORKUP_DIR="${HOME}/.workup"

Expand Down
2 changes: 1 addition & 1 deletion lib/workup/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
#

module Workup
VERSION = '0.1.5'
VERSION = '0.1.6'
end
2 changes: 1 addition & 1 deletion omnibus/config/projects/workup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# and /opt/workup on all other platforms
install_dir "#{default_root}/#{name}"

build_version '0.1.5'
build_version '0.1.6'

build_iteration 1

Expand Down
2 changes: 1 addition & 1 deletion omnibus/config/software/workup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
build do
env = with_standard_compiler_flags(with_embedded_path)

gem 'install pkg/workup-0.1.5.gem', env: env
gem 'install pkg/workup-0.1.6.gem', env: env

block do
['workup', 'git'].each do |cmd|
Expand Down

0 comments on commit 53b4023

Please sign in to comment.