Skip to content

Commit c49ed5f

Browse files
committed
Prepare release 0.24
1 parent 13a564b commit c49ed5f

3 files changed

Lines changed: 14 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ 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+
## [0.24] 2021-05-05
8+
9+
### Fixed
10+
- Fixed `any` breaking when the list had several items.
11+
12+
### Added
13+
- Added `containsSubList` for `List`.
14+
- Added `exists` for `Path`.
15+
716
## [0.23.1] 2021-02-03
817

918
### Fixed
@@ -393,4 +402,4 @@ collections (ex: `Set`).
393402
- Fix issue with isEqualTo and nullable java strings
394403

395404
## [0.9] - 2017-09-25
396-
- Initial Release
405+
- Initial Release

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repositories {
1515
}
1616
1717
dependencies {
18-
testCompile 'com.willowtreeapps.assertk:assertk-jvm:0.23.1'
18+
testCompile 'com.willowtreeapps.assertk:assertk-jvm:0.24'
1919
}
2020
```
2121

@@ -228,4 +228,4 @@ The general rule of thumb is to prefer building out of the existing assertions u
228228
error message.
229229

230230
## Contributing to assertk
231-
Contributions are more than welcome! Please see the [Contributing Guidelines](https://github.com/willowtreeapps/assertk/blob/master/Contributing.md) and be mindful of our [Code of Conduct](https://github.com/willowtreeapps/assertk/blob/master/code-of-conduct.md).
231+
Contributions are more than welcome! Please see the [Contributing Guidelines](https://github.com/willowtreeapps/assertk/blob/master/Contributing.md) and be mindful of our [Code of Conduct](https://github.com/willowtreeapps/assertk/blob/master/code-of-conduct.md).

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
id "de.marcphilipp.nexus-publish" version "0.4.0" apply false
1212
}
1313

14-
version = '0.24-SNAPSHOT'
14+
version = '0.24'
1515

1616
ext {
1717
isReleaseVersion = !(version =~ /-SNAPSHOT$/)
@@ -227,4 +227,4 @@ configure(subprojects.findAll({ it.name.startsWith('assertk') })) {
227227
}
228228
}
229229
}
230-
}
230+
}

0 commit comments

Comments
 (0)