diff --git a/CHANGELOG.md b/CHANGELOG.md index eba8c78..9135ca0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,20 @@ # Changelog -### next version (????/??/??) +### 1.0.0-beta3 (2019/12/09) #### `core` - Add the nullable value forgeries + - Add the enum forgeries + +#### `junit4` + + - Handle enums fields annotated with `@Forgery` #### `junit5` - Fix the error message when a test fails + - Handle enums fields and parameters annotated with `@Forgery` #### `jvm` diff --git a/README.md b/README.md index ce27291..7456159 100644 --- a/README.md +++ b/README.md @@ -104,19 +104,25 @@ Contribution is fully welcome. Before submitting a Pull Request, please verify y ## Release History -### Latest Release: `1.0.0-beta2` (2019/12/02) +### Latest Release: `1.0.0-beta3` (2019/12/09) #### `core` - - Add the randomizeCase and substring forgeries + - Add the nullable value forgeries + - Add the enum forgeries -#### `jvm` +#### `junit4` - - Implement File, Uri and Url forgery factories + - Handle enums fields annotated with `@Forgery` -For more information, read the [Changelog](CHANGELOG.md). +#### `junit5` + - Fix the error message when a test fails + - Handle enums fields and parameters annotated with `@Forgery` + +#### `jvm` + - Improve the File forgery factory ## Meta Xavier F. Gouchet – [@xgouchet](https://twitter.com/xgouchet) diff --git a/jvm/build.gradle.kts b/jvm/build.gradle.kts index 388b2bf..1e21caf 100644 --- a/jvm/build.gradle.kts +++ b/jvm/build.gradle.kts @@ -23,4 +23,4 @@ dependencies { testCompile(project(":junit5")) } -commonConfig(0.95) +commonConfig(0.925)