diff --git a/CHANGELOG.MD b/CHANGELOG.MD index e9ddad17..6bf87e6a 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,3 +1,8 @@ +## [1.1.0] - October 5th 2022 + +* Dependency updates +* Housekeeping and general clean up + ## [1.0.0] - July 25th 2022 * Auto publishing via CI diff --git a/README.md b/README.md index a962f10c..db27571f 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Model Forge is a library to automate model generation for automated testing: ```kotlin dependencies { - testImplementation("io.github.hellocuriosity:model-forge:1.0.0") + testImplementation("io.github.hellocuriosity:model-forge:1.1.0") } ``` @@ -36,7 +36,7 @@ dependencies { ```groovy dependencies { - testImplementation 'io.github.hellocuriosity:model-forge:1.0.0' + testImplementation 'io.github.hellocuriosity:model-forge:1.1.0' } ``` @@ -55,7 +55,7 @@ repositories { } dependencies { - testImplementation("io.github.hellocuriosity:model-forge:1.0.0.xx-SNAPSHOT") + testImplementation("io.github.hellocuriosity:model-forge:1.1.0.xx-SNAPSHOT") } ``` @@ -70,7 +70,7 @@ repositories { } dependencies { - testImplementation 'io.github.hellocuriosity:model-forge:1.0.0.xx-SNAPSHOT' + testImplementation 'io.github.hellocuriosity:model-forge:1.1.0.xx-SNAPSHOT' } ```