Skip to content

Commit

Permalink
Prepare version 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Nov 30, 2024
1 parent a941806 commit 25de520
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# Change Log

## [Unreleased]
[Unreleased]: https://github.com/cashapp/burst/compare/0.6.0...HEAD
[Unreleased]: https://github.com/cashapp/burst/compare/2.1.0...HEAD



## [2.2.0] *(2024-11-06)*
[2.2.0]: https://github.com/cashapp/burst/releases/tag/2.2.0

**Added**

* Basic support for JUnit 5. Burst doesn't support JUnit 5 tests that populate parameters from extensions.
* Support Kotlin 2.1.0

**Fixed**

* Match enum values by name, to ensure they can be matched across compilation units.


## [2.1.0] *(2024-11-06)*
Expand Down
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("app.cash.burst:burst-gradle-plugin:2.1.0")
classpath("app.cash.burst:burst-gradle-plugin:2.2.0")
}
}
```
Expand All @@ -123,6 +123,19 @@ plugins {
}
```

### Compatibility

Since Kotlin compiler plugins are an unstable API, certain versions of Cite only work with
certain versions of Kotlin.

| Kotlin | Burst |
|-----------------|---------------|
| 2.1.0 | 2.2.0 |
| 2.0.20 - 2.0.21 | 0.1.0 - 2.1.0 |

Kotlin versions newer than those listed may be supported but have not been tested.



License
-------
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ org.gradle.jvmargs=-Xmx1024m -Dfile.encoding=UTF-8
org.gradle.parallel=true

# HEY! If you change the major version here be sure to update release.yaml doc target folder!
VERSION_NAME=2.2.0-SNAPSHOT
VERSION_NAME=2.2.0

systemProp.org.gradle.internal.http.socketTimeout=120000

0 comments on commit 25de520

Please sign in to comment.