diff --git a/CHANGELOG.md b/CHANGELOG.md index 10fc7e1..c1e61f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## [1.7.0] + +_2023-06-18_ + +- Fix #98 by removing unexpected generics marker on Companion extension +- Constraint dependencies to not leak through consumers (KSP-api and Kotlin reflect) +- Remove unnecessarily enforced `kotlin.jvmToolchain(17)` +- Support inferred visibility of Companion object based on sealed class visibility + ## [1.6.3] _2023-04-29_ @@ -83,7 +92,8 @@ _2022-08-22_ > **Note** 🎉 Initial release -[Unreleased]: https://github.com/SimonMarquis/SealedObjectInstances/compare/1.6.3...HEAD +[Unreleased]: https://github.com/SimonMarquis/SealedObjectInstances/compare/1.7.0...HEAD +[1.7.0]: https://github.com/SimonMarquis/SealedObjectInstances/releases/tag/1.7.0 [1.6.3]: https://github.com/SimonMarquis/SealedObjectInstances/releases/tag/1.6.3 [1.6.2]: https://github.com/SimonMarquis/SealedObjectInstances/releases/tag/1.6.2 [1.6.1]: https://github.com/SimonMarquis/SealedObjectInstances/releases/tag/1.6.1 diff --git a/gradle.properties b/gradle.properties index 7a60011..15e8ad2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=1.7.0-SNAPSHOT +version=1.7.0 group=fr.smarquis.sealed artifactId=sealed-object-instances