From 4664e74c69135fb45e3119c4152228b1eb938435 Mon Sep 17 00:00:00 2001 From: Robert Stoll Date: Wed, 11 Aug 2021 16:42:14 +0200 Subject: [PATCH] v1.4.7 --- README.md | 14 +++++++------- build.gradle.kts | 12 ++++++------ docs/index.md | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 04036e5..321fe3e 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,16 @@ - -[![Download](https://img.shields.io/badge/Download-1.4.6-%23007ec6)](https://search.maven.org/artifact/ch.tutteli.niok/niok/1.4.6/jar) + - + # Niok - java.nio.file for Kotlin @@ -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") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 368da9b..665fd62 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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" } @@ -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\"/;" \ @@ -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/;" \ @@ -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 diff --git a/docs/index.md b/docs/index.md index aa0bec2..038d110 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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 @@ -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") } ```