Skip to content

Commit

Permalink
Prepare release 0.24
Browse files Browse the repository at this point in the history
  • Loading branch information
evant committed May 5, 2021
1 parent 13a564b commit c49ed5f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.24] 2021-05-05

### Fixed
- Fixed `any` breaking when the list had several items.

### Added
- Added `containsSubList` for `List`.
- Added `exists` for `Path`.

## [0.23.1] 2021-02-03

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

## [0.9] - 2017-09-25
- Initial Release
- Initial Release
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {
}
dependencies {
testCompile 'com.willowtreeapps.assertk:assertk-jvm:0.23.1'
testCompile 'com.willowtreeapps.assertk:assertk-jvm:0.24'
}
```

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

## Contributing to assertk
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).
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).
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
id "de.marcphilipp.nexus-publish" version "0.4.0" apply false
}

version = '0.24-SNAPSHOT'
version = '0.24'

ext {
isReleaseVersion = !(version =~ /-SNAPSHOT$/)
Expand Down Expand Up @@ -227,4 +227,4 @@ configure(subprojects.findAll({ it.name.startsWith('assertk') })) {
}
}
}
}
}

0 comments on commit c49ed5f

Please sign in to comment.