Skip to content

Commit

Permalink
v1.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
robstoll committed Aug 11, 2021
1 parent 64d198f commit 4664e74
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<!-- for master -->

[![Download](https://img.shields.io/badge/Download-1.4.6-%23007ec6)](https://search.maven.org/artifact/ch.tutteli.niok/niok/1.4.6/jar)
<!--
[![Download](https://img.shields.io/badge/Download-1.4.7-%23007ec6)](https://search.maven.org/artifact/ch.tutteli.niok/niok/1.4.7/jar)
[![Apache license](https://img.shields.io/badge/license-Apache%202.0-brightgreen.svg)](http://opensource.org/licenses/Apache2.0)
[![Build Status Ubuntu](https://github.com/robstoll/niok/workflows/Ubuntu/badge.svg?event=push)](https://github.com/robstoll/niok/actions?query=workflow%3AUbuntu+branch%3Amaster)
[![Build Status Windows](https://github.com/robstoll/niok/workflows/Windows/badge.svg?event=push)](https://github.com/robstoll/niok/actions?query=workflow%3AWindows+branch%3Amaster)
[![SonarCloud Status](https://sonarcloud.io/api/project_badges/measure?project=robstoll_niok&metric=alert_status)](https://sonarcloud.io/dashboard?id=robstoll_niok)

-->
<!-- for a specific release -->
<!--
[![Download](https://img.shields.io/badge/Download-1.4.6-%23007ec6)](https://search.maven.org/artifact/ch.tutteli.niok/niok/1.4.6/jar)

[![Download](https://img.shields.io/badge/Download-1.4.7-%23007ec6)](https://search.maven.org/artifact/ch.tutteli.niok/niok/1.4.7/jar)
[![Apache license](https://img.shields.io/badge/license-Apache%202.0-brightgreen.svg)](http://opensource.org/licenses/Apache2.0)
-->


# Niok - java.nio.file for Kotlin

Expand All @@ -27,7 +27,7 @@ Niok is published to maven central. Following an example how to use it
```
repositories { mavenCentral() }
dependencies {
implementation("ch.tutteli.niok:niok:1.4.6")
implementation("ch.tutteli.niok:niok:1.4.7")
}
```

Expand Down
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import java.net.URL
buildscript {
// needs to be defined in here because otherwise tutteli-publish plugin does not have this information when applied
rootProject.group = "ch.tutteli.niok"
rootProject.version = "1.4.7-SNAPSHOT"
rootProject.version = "1.4.7"
rootProject.description = "API for java.nio.file in a Kotlin idiomatic way"
}

Expand Down Expand Up @@ -122,11 +122,11 @@ b) check if output/links are still good (use intellij's http server via -> right
Either use the following commands or the manual steps below
export NIOK_PREVIOUS_VERSION=1.4.6
export NIOK_PREVIOUS_VERSION=1.4.7
export NIOK_VERSION=1.4.7
find ./ -name "*.md" | xargs perl -0777 -i \
-pe "s@$NIOK_PREVIOUS_VERSION@$NIOK_VERSION@g;" \
-pe "s@tree/v1.4.6@tree/v$NIOK_VERSION@g;"
-pe "s@tree/v1.4.7@tree/v$NIOK_VERSION@g;"
perl -0777 -i \
-pe "s@$NIOK_PREVIOUS_VERSION@$NIOK_VERSION@g;" \
-pe "s/rootProject.version = \"$NIOK_VERSION-SNAPSHOT\"/rootProject.version = \"$NIOK_VERSION\"/;" \
Expand Down Expand Up @@ -157,10 +157,10 @@ alternatively the manual steps:
Prepare next dev cycle
-----------------------
export NIOK_VERSION=1.4.6
export NIOK_VERSION=1.4.7
export NIOK_NEXT_VERSION=1.4.7
find ./ -name "*.md" | xargs perl -0777 -i \
-pe "s@tree/v$NIOK_VERSION@tree/v1.4.6@g;";
-pe "s@tree/v$NIOK_VERSION@tree/v1.4.7@g;";
perl -0777 -i \
-pe "s/rootProject.version = \"$NIOK_VERSION\"/rootProject.version = \"$NIOK_NEXT_VERSION-SNAPSHOT\"/;" \
-pe "s/NIOK_VERSION=$NIOK_VERSION/NIOK_VERSION=$NIOK_NEXT_VERSION/;" \
Expand All @@ -172,7 +172,7 @@ git commit -a -m "prepare dev cycle of $NIOK_NEXT_VERSION"
1. point to master
a) search for `tag=vX.Y.Z` and replace it with `branch=master`
b) search for `tree/vX.Y.Z` and replace it with `tree/v1.4.6`
b) search for `tree/vX.Y.Z` and replace it with `tree/v1.4.7`
2. search for X.Y.Z and replace with X.Y.Z-SNAPSHOT
3. commit & push changes
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Download](https://img.shields.io/badge/Download-1.4.6-%23007ec6)](https://search.maven.org/artifact/ch.tutteli.niok/niok/1.4.6/jar)
[![Download](https://img.shields.io/badge/Download-1.4.7-%23007ec6)](https://search.maven.org/artifact/ch.tutteli.niok/niok/1.4.7/jar)
[![Apache license](https://img.shields.io/badge/license-Apache%202.0-brightgreen.svg)](http://opensource.org/licenses/Apache2.0)

# Niok - java.nio.file for Kotlin
Expand All @@ -16,7 +16,7 @@ Niok is published to maven central. Following an example how to use it
```
repositories { mavenCentral() }
dependencies {
implementation("ch.tutteli.niok:niok:1.4.6")
implementation("ch.tutteli.niok:niok:1.4.7")
}
```

Expand Down

0 comments on commit 4664e74

Please sign in to comment.