Skip to content

Commit 78f47fe

Browse files
committed
Bump version to 0.10 to prepare for release
1 parent 1938d93 commit 78f47fe

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [0.10] - 2018-03-31
88
### Added
99
- Add docs to all assertions.
1010
- Add Path assertions.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repositories {
1313
}
1414
1515
dependencies {
16-
testCompile 'com.willowtreeapps.assertk:assertk:0.9'
16+
testCompile 'com.willowtreeapps.assertk:assertk:0.10'
1717
}
1818
```
1919

@@ -70,7 +70,7 @@ run even if the first one fails.
7070

7171
```kotlin
7272
val string = "Test"
73-
assert(string) {
73+
assert(string).all {
7474
startsWith("L")
7575
hasLength(3)
7676
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.willowtreeapps.assertk'
2-
version '0.10-SNAPSHOT'
2+
version '0.10'
33

44
buildscript {
55
ext.kotlin_version = '1.1.50'

publish.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ signing {
3838
sign configurations.archives
3939
}
4040

41-
def siteUrl = 'https://github.com/evant/assertk'
42-
def gitUrl = 'https://github.com/evant/assertk.git'
41+
def siteUrl = 'https://github.com/willowtreeapps/assertk'
42+
def gitUrl = 'https://github.com/willowtreeapps/assertk.git'
4343

4444
pom {
4545
name project.name

0 commit comments

Comments
 (0)