Skip to content

Commit 6357507

Browse files
committed
v1.0.0
1 parent d5a9eb1 commit 6357507

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ script:
2121
- |
2222
if [ "$TRAVIS_TEST_RESULT" == 0 ] && [ "$TRAVIS_JDK_VERSION" == oraclejdk8 ] && [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
2323
sonar-scanner \
24-
-Dsonar.projectVersion=0.4.0-SNAPSHOT \
24+
-Dsonar.projectVersion=1.0.0 \
2525
-Dsonar.projectKey=robstoll_niok \
2626
-Dsonar.kotlin.detekt.reportPaths=build/detekt/detekt-checkstyle.xml \
2727
-Dsonar.sources=src/main/kotlin \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Download](https://api.bintray.com/packages/robstoll/tutteli-jars/niok/images/download.svg)](https://bintray.com/robstoll/tutteli-jars/niok/_latestVersion)
22
[![Apache license](https://img.shields.io/badge/license-Apache%202.0-brightgreen.svg)](http://opensource.org/licenses/Apache2.0)
3-
[![Build Status Travis](https://travis-ci.org/robstoll/niok.svg?branch=master)](https://travis-ci.org/robstoll/niok/branches)
3+
[![Build Status Travis](https://travis-ci.org/robstoll/niok.svg?tag=v1.0.0)](https://travis-ci.org/robstoll/niok/branches)
44
[![Build status GitHub Actions](https://github.com/robstoll/niok/workflows/Windows/badge.svg)](https://github.com/robstoll/niok/actions/)
55
[![SonarCloud Status](https://sonarcloud.io/api/project_badges/measure?project=robstoll_niok&metric=alert_status)](https://sonarcloud.io/dashboard?id=robstoll_niok)
66

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
project.group = 'ch.tutteli.niok'
3-
project.version ='0.4.0-SNAPSHOT'
3+
project.version ='1.0.0'
44
project.description = "API for java.nio.file in a Kotlin idiomatic way"
55

66
ext {
@@ -79,16 +79,16 @@ if (JavaVersion.current() >= JavaVersion.VERSION_1_9) {
7979
8080
Release & deploy a commit
8181
--------------------------------
82-
1. search for X.Y.Z-SNAPSHOT and replace with X.Y.Z
82+
1. search for X.Y.Z-SNAPSHOT and replace with X.Y.Z
8383
2. update master:
8484
a) point to the tag
85-
1) search for `branch=master` and replace it with `branch=vX.Y.Z` (build status and coverage in README.md)
86-
2) search for `tree/master` and replace it with `tree/vX.Y.Z` (README.md)
85+
1) search for `branch=master` and replace it with `branch=vX.Y.Z` (build status in README.md)
86+
2) search for `tree/master` and replace it with `tree/vX.Y.Z` (so far nowhere)
8787
b) commit (modified .travis.yml, build.gradle and README.md)
8888
c) git tag vX.Y.Z
8989
d) git push origin vX.Y.Z
9090
4. deploy to bintray:
91-
a) ./gr publishToBintray
91+
a) java -version 2>&1 | grep "version \"9" && ./gr clean publishToBintray
9292
b) Log in to bintray, check and publish new jars
9393
5. create release on github
9494

0 commit comments

Comments
 (0)