Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robstoll committed Mar 1, 2018
1 parent d606ef0 commit fecece1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Download](https://api.bintray.com/packages/robstoll/tutteli-jars/kbox/images/download.svg) ](https://bintray.com/robstoll/tutteli-jars/kbox/_latestVersion)
[![Apache license](https://img.shields.io/badge/license-Apache%202.0-brightgreen.svg)](http://opensource.org/licenses/Apache2.0)
[![Build Status](https://travis-ci.org/robstoll/kbox.svg?branch=master)](https://travis-ci.org/robstoll/kbox)
[![Coverage](https://codecov.io/github/robstoll/kbox/coverage.svg?branch=master)](https://codecov.io/github/robstoll/kbox?branch=master)
[![Build Status](https://travis-ci.org/robstoll/kbox.svg?branch=v0.3.0)](https://travis-ci.org/robstoll/kbox)
[![Coverage](https://codecov.io/github/robstoll/kbox/coverage.svg?branch=v0.3.0)](https://codecov.io/github/robstoll/kbox?branch=v0.3.0)

# KBox
KBox is a very small utility library for Kotlin
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
kbox_version = '0.3.0-SNAPSHOT'
kbox_version = '0.3.0'
atrium_version = '0.6.0'
kotlin_version = '1.2.21'
mockito_kotlin_version = '1.5.0'
Expand Down Expand Up @@ -56,7 +56,7 @@ configure(projectsWithSources) {
outputDirectory = "$buildDir/kdoc"
linkMapping {
dir = "$srcKotlin"
url = "https://github.com/robstoll/${project.name}/tree/master/${project.name}/$srcKotlin"
url = "https://github.com/robstoll/${project.name}/tree/v0.3.0/${project.name}/$srcKotlin"
suffix = '#L'
}

Expand Down Expand Up @@ -87,7 +87,7 @@ Release & deploy a commit
2. update master:
a) point to the tag
1) search for `branch=master` and replace it with `tag=vX.Y.Z` (build status and coverage in README.md)
2) search for `tree/master` and replace it with `tree/vX.Y.Z` (README.md)
2) search for `tree/v0.3.0` and replace it with `tree/vX.Y.Z` (README.md)
b) commit (modified build.gradle, README.md)
c) git tag vX.Y.Z
d) git push origin vX.Y.Z
Expand All @@ -101,7 +101,7 @@ Prepare next dev cycle
1. change version in build.gradle to X.Y.Z-SNAPSHOT
2. 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/master`
b) search for `tree/vX.Y.Z` and replace it with `tree/v0.3.0`
3. commit & push changes
*/
Expand Down

0 comments on commit fecece1

Please sign in to comment.