diff --git a/changelog.md b/changelog.md index 7611277..ff69358 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,9 @@ +0.2.7 +===== + +* Our errors inherit from `Throwable`, and now we call `super()` in their constructors. This allows propagating exception `cause`, as the result the whole chain of exceptions is visible in error handler. [#58](https://github.com/centrifugal/centrifuge-java/pull/58) +* Disconnect gracefully from WebSocket, instead of calling `ws.cancel()`. [#56](https://github.com/centrifugal/centrifuge-java/pull/56) + 0.2.6 ===== diff --git a/publish-setup.gradle b/publish-setup.gradle index ad5941e..7dc4104 100644 --- a/publish-setup.gradle +++ b/publish-setup.gradle @@ -1,7 +1,7 @@ allprojects { plugins.withId("com.vanniktech.maven.publish.base") { project.group = "io.github.centrifugal" - project.version = "0.2.6" + project.version = "0.2.7" mavenPublishing { publishToMavenCentral()