Skip to content

Commit d0f0e10

Browse files
committed
Merge pull request #407 from sleekbyte/ak-406-v091-release
#406: Bump version number to v0.9.1
2 parents fed8124 + 3e641a7 commit d0f0e10

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ jdk:
44
before_install:
55
- rvm install 2.3.0
66
- gem update bundler
7-
- pip install --user codecov
7+
# HACK: Workaround for bundler/bundler#4494
8+
- gem install bundler -v 1.11.2
89
after_success:
9-
- codecov
1010
- ./gradlew coveralls
1111
before_deploy:
1212
- "shasum -a 256 build/distributions/*"

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,6 @@ Tool | License
430430
[Checkstyle](http://checkstyle.sourceforge.net) | [GNU Lesser General Public License](http://checkstyle.sourceforge.net/license.html)
431431
[PMD](http://pmd.sourceforge.net) | [BSD-style](http://pmd.sourceforge.net/pmd-5.3.2/license.html)
432432
[JaCoCo](http://eclemma.org/jacoco/) | [Eclipse Public License v1.0](http://eclemma.org/license.html)
433-
[Codecov](https://codecov.io) | [Free for Open Source](https://codecov.io/#pricing)
434433
[Coveralls](https://coveralls.io) | [Free for Open Source](https://coveralls.io/pricing)
435434
[Bundler](http://bundler.io) | [MIT](https://github.com/bundler/bundler/blob/master/LICENSE.md)
436435
[Codacy](https://www.codacy.com) | [Free for Open Source](https://www.codacy.com/pricing)

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ task gems(type: Exec) {
174174
outputs.dir file('src/dist/gems/vendor/')
175175
workingDir 'src/dist/gems'
176176
executable 'sh'
177-
args '-c', 'bundle package --no-install'
177+
// HACK: Workaround for bundler/bundler#4494
178+
args '-c', 'bundle _1.11.2_ package --no-install'
178179
}
179180
// Ensure gems are packaged into distribution
180181
distZip.dependsOn 'gems'

script/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $erroractionpreference = 'stop' # Quit if anything goes wrong
44

55
### Variables
66
$appdatadir = $env:localappdata.tolower()
7-
$tailorversion = '0.9.0'
7+
$tailorversion = '0.9.1'
88
$tailor = 'tailor'
99
$tailorzip = "$tailor-$tailorversion.zip"
1010
$tailorinstalldir = "$appdatadir\$tailor"

script/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ PREFIX="/usr/local"
1212
TAILOR_DIR="$PREFIX/tailor"
1313
BIN_DIR="$PREFIX/bin"
1414
MAN_DIR="$PREFIX/share/man/man1"
15-
TAILOR_VERSION="0.9.0"
15+
TAILOR_VERSION="0.9.1"
1616
TAILOR_ZIP="tailor-$TAILOR_VERSION.zip"
1717
START_SCRIPT="$TAILOR_DIR/tailor-$TAILOR_VERSION/bin/tailor"
1818
MAN_PAGE="$TAILOR_DIR/tailor-$TAILOR_VERSION/tailor.1"

script/uninstall.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
$erroractionpreference = 'stop' # Quit if anything goes wrong
44

55
### Variables
6-
$tailorversion = '0.9.0'
6+
$tailorversion = '0.9.1'
77
$tailor = 'tailor'
88
$appdatadir = $env:localappdata.tolower()
99
$tailordir = "$appdatadir\$tailor"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Sat Apr 23 15:38:07 EDT 2016
2-
version=0.9.0
1+
#Sat Apr 30 15:51:13 EDT 2016
2+
version=0.9.1

0 commit comments

Comments
 (0)