From 7a905e1f7f57f098b60b89bc2a0aacd83b45738f Mon Sep 17 00:00:00 2001 From: dblock Date: Sun, 17 Sep 2023 05:08:21 -0400 Subject: [PATCH] Preparing for release, 2.2.0. Signed-off-by: dblock --- CHANGELOG.md | 3 +-- README.md | 2 +- lib/slack/version.rb | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a1ddfd8..197c9363 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -### 2.1.1 (Next) +### 2.2.0 (2023/09/17) * [#458](https://github.com/slack-ruby/slack-ruby-client/pull/458): Add workflow for automatic API updates - [@duffn](https://github.com/duffn). * [#455](https://github.com/slack-ruby/slack-ruby-client/pull/455): Update Slack API: Added pagination to `team.accessLogs` and `AppsDatastore` methods - [@marfoldi](https://github.com/marfoldi). @@ -19,7 +19,6 @@ * [#486](https://github.com/slack-ruby/slack-ruby-client/pull/486): Async handler support for Slack::RealTime::Config and Client - [@milestruecar](https://github.com/milestruecar). * [#489](https://github.com/slack-ruby-client/pulls/489): Update API from [slack-api-ref@0d3f0b6](https://github.com/slack-ruby/slack-api-ref/commit/0d3f0b6) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot). * [#493](https://github.com/slack-ruby-client/pulls/493): Update API from [slack-api-ref@f2e768a](https://github.com/slack-ruby/slack-api-ref/commit/f2e768a) - [@slack-ruby-ci-bot](https://github.com/apps/slack-ruby-ci-bot). -* Your contribution here. ### 2.1.0 (2023/03/17) diff --git a/README.md b/README.md index e9eff064..46a1cfc5 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ A Ruby client for the Slack [Web](https://api.slack.com/web), [RealTime Messagin ## Stable Release -You're reading the documentation for the **next** release of slack-ruby-client. Please see the documentation for the [last stable release, v2.1.0](https://github.com/slack-ruby/slack-ruby-client/blob/v2.1.0/README.md) unless you're integrating with HEAD. See [UPGRADING](UPGRADING.md) when upgrading from an older version. +You're reading the documentation for the **stable** release of slack-ruby-client, 2.2.0. See [UPGRADING](UPGRADING.md) when upgrading from an older version. ## Installation diff --git a/lib/slack/version.rb b/lib/slack/version.rb index a35d8b2b..d222b2fe 100644 --- a/lib/slack/version.rb +++ b/lib/slack/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Slack - VERSION = '2.1.1' + VERSION = '2.2.0' end