From b673db0e5aa543c5c94e9ccaf1b0d4248d458a5f Mon Sep 17 00:00:00 2001 From: Marvin Schramm Date: Wed, 26 Aug 2020 11:37:25 +0200 Subject: [PATCH] prepare release --- CHANGELOG.md | 16 ++++++++++++---- ...kClientTests.kt => SpringSlackClientTests.kt} | 4 ++-- 2 files changed, 14 insertions(+), 6 deletions(-) rename client/slack-spring-api-client/src/test/kotlin/com/kreait/slack/api/spring/{SprinSlackClientTests.kt => SpringSlackClientTests.kt} (99%) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4c4344fd..e07640ebf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -### Events -- Introduced Event Typing to have better access -### Added -- Added changelog +## [2.0.0] - 2020-08-26 +- Added Pins API methods +- Added JsonIgnore on unknown properties to DTOs +- Unified Message objects into one +- Added app_home_opened event +- Added subteam_created event +- Added subteam_members_changed event +- Added team_join event +- Added user_change event +- Introdced Instant Type mapping in UserGroup +- Added TypedEventReceiver to make generic event type mapping possible +- Added various sample methods for testing ## [1.0.0] - 2019-10-25 Initial Release diff --git a/client/slack-spring-api-client/src/test/kotlin/com/kreait/slack/api/spring/SprinSlackClientTests.kt b/client/slack-spring-api-client/src/test/kotlin/com/kreait/slack/api/spring/SpringSlackClientTests.kt similarity index 99% rename from client/slack-spring-api-client/src/test/kotlin/com/kreait/slack/api/spring/SprinSlackClientTests.kt rename to client/slack-spring-api-client/src/test/kotlin/com/kreait/slack/api/spring/SpringSlackClientTests.kt index 3579bbde9..c4b55c663 100644 --- a/client/slack-spring-api-client/src/test/kotlin/com/kreait/slack/api/spring/SprinSlackClientTests.kt +++ b/client/slack-spring-api-client/src/test/kotlin/com/kreait/slack/api/spring/SpringSlackClientTests.kt @@ -17,7 +17,7 @@ import com.kreait.slack.api.spring.group.users.SpringUserMethodGroup import org.junit.jupiter.api.DisplayName import org.junit.jupiter.api.Test -class SprinSlackClientTests { +class SpringSlackClientTests { private val springSlackClient = SpringSlackClient() @DisplayName("Check RespondMethodGroup") @@ -103,4 +103,4 @@ class SprinSlackClientTests { fun testPinsGroup() { assert(springSlackClient.pins() is SpringPinsMethodGroup) } -} \ No newline at end of file +}