diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f07754..eb9c553 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,10 @@ * [#4](https://github.com/slack-ruby/slack-ruby-bot-server-events-app-mentions/pull/4): Upgraded RuboCop to 1.80.2 - [@dblock](https://github.com/dblock). * Your contribution here. -#### 0.1.1 (01/06/2021) +#### 0.1.1 (2021/01/06) * [#1](https://github.com/slack-ruby/slack-ruby-bot-server-events-app-mentions/pull/1): Fix: fetch text via hash accessor - [@robholland](https://github.com/robholland). -#### 0.1.0 (11/30/2020) +#### 0.1.0 (2020/11/30) * Initial public release - [@dblock](https://github.com/dblock). diff --git a/LICENSE b/LICENSE index 7042ec7..abdf9a8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2020 Daniel Doubrovkine & Contributors +Copyright (c) 2020-2025 Daniel Doubrovkine & Contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index d6507aa..e33826d 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,16 @@ Slack Ruby Bot Server Events App Mentions An extension to [slack-ruby-bot-server-events](https://github.com/slack-ruby/slack-ruby-bot-server-events) that makes it easier to handle [app mentions](https://api.slack.com/events/app_mention) - message events that directly mention your bot user. +### Table of Contents + +- [Sample](#sample) +- [Usage](#usage) + - [Gemfile](#gemfile) + - [Configure OAuth Scopes](#configure-oauth-scopes) + - [Implement Mentions](#implement-mentions) + - [Configure Handlers](#configure-handlers) +- [Copyright & License](#copyright--license) + ### Sample See [slack-ruby/slack-ruby-bot-server-events-app-mentions-sample](https://github.com/slack-ruby/slack-ruby-bot-server-events-app-mentions-sample) for a working sample. @@ -73,6 +83,6 @@ end ### Copyright & License -Copyright [Daniel Doubrovkine](http://code.dblock.org) and Contributors, 2020 +Copyright [Daniel Doubrovkine](http://code.dblock.org) and Contributors, 2020-2025 [MIT License](LICENSE) diff --git a/lib/slack-ruby-bot-server-events-app-mentions/version.rb b/lib/slack-ruby-bot-server-events-app-mentions/version.rb index ec36f94..c0375ff 100644 --- a/lib/slack-ruby-bot-server-events-app-mentions/version.rb +++ b/lib/slack-ruby-bot-server-events-app-mentions/version.rb @@ -3,7 +3,7 @@ module SlackRubyBotServer module Events module AppMentions - VERSION = '0.1.2' + VERSION = '0.2.0' end end end