Skip to content

Commit 3cbfc65

Browse files
Update releasing documentation (#163)
* fix: typo in UPGRADING.md * docs: update releasing doc * chore: add changelog entry * docs: revert upstream to origin in releasing doc
1 parent 2604dc3 commit 3cbfc65

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
### 2.0.2 (Next)
44

5+
* [#163](https://github.com/slack-ruby/slack-ruby-bot-server/pull/163): Updated releasing documentation - [@crazyoptimist](https://github.com/crazyoptimist).
56
* Your contribution here.
67

78
#### 2.0.1 (2023/02/20)

RELEASING.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ bundle install
1111
rake
1212
```
1313

14-
Check that the last build succeeded in [Travis CI](https://travis-ci.org/slack-ruby/slack-ruby-bot-server) for all supported platforms.
14+
Check that the last build succeeded in [Github Actions](https://github.com/slack-ruby/slack-ruby-bot-server/actions) for all supported platforms.
1515

1616
Change "Next" in [CHANGELOG.md](CHANGELOG.md) to the current date.
1717

1818
```
19-
### 0.2.2 (7/10/2015)
19+
### 2.0.1 (2023/02/20)
2020
```
2121

2222
Remove the line with "Your contribution here.", since there will be no more contributions to this release.
@@ -26,14 +26,14 @@ Change `**next**` in the "Stable Release" section in README that warns users tha
2626
```
2727
## Stable Release
2828
29-
You're reading the documentation for the **stable** release of slack-ruby-bot-server, 0.2.2. See [UPGRADING](UPGRADING.md) when upgrading from an older version.
29+
You're reading the documentation for the **stable** release of slack-ruby-bot-server, 2.0.1. See [UPGRADING](UPGRADING.md) when upgrading from an older version.
3030
```
3131

3232
Commit your changes.
3333

3434
```
3535
git add README.md CHANGELOG.md
36-
git commit -m "Preparing for release, 0.2.2."
36+
git commit -m "Preparing for release, 2.0.1."
3737
git push origin master
3838
```
3939

@@ -42,18 +42,18 @@ Release.
4242
```
4343
$ rake release
4444
45-
slack-ruby-bot-server 0.2.2 built to pkg/slack-ruby-bot-server-0.2.2.gem.
46-
Tagged v0.2.2.
45+
slack-ruby-bot-server 2.0.1 built to pkg/slack-ruby-bot-server-2.0.1.gem.
46+
Tagged v2.0.1.
4747
Pushed git commits and tags.
48-
Pushed slack-ruby-bot-server 0.2.2 to rubygems.org.
48+
Pushed slack-ruby-bot-server 2.0.1 to rubygems.org.
4949
```
5050

5151
### Prepare for the Next Version
5252

5353
Add the next release to [CHANGELOG.md](CHANGELOG.md).
5454

5555
```
56-
### 0.2.3 (Next)
56+
### 2.0.2 (Next)
5757
5858
* Your contribution here.
5959
```
@@ -65,13 +65,13 @@ Undo your change in README about the stable release.
6565
```
6666
## Stable Release
6767
68-
You're reading the documentation for the **next** release of slack-ruby-bot-server. Please see the documentation for the [last stable release, v0.2.2](https://github.com/slack-ruby/slack-ruby-bot-server/blob/v0.2.2/README.md) unless you're integrating with HEAD. See [UPGRADING](UPGRADING.md) when upgrading from an older version.
68+
You're reading the documentation for the **next** release of slack-ruby-bot-server. Please see the documentation for the [last stable release, v2.0.1](https://github.com/slack-ruby/slack-ruby-bot-server/blob/v2.0.1/README.md) unless you're integrating with HEAD. See [UPGRADING](UPGRADING.md) when upgrading from an older version. See [MIGRATING](MIGRATING.md) for help with migrating Legacy Slack Apps to Granular Scopes.
6969
```
7070

7171
Commit your changes.
7272

7373
```
7474
git add README.md CHANGELOG.md lib/slack-ruby-bot-server/version.rb
75-
git commit -m "Preparing for next development iteration, 0.2.3."
75+
git commit -m "Preparing for next development iteration, 2.0.2."
7676
git push origin master
7777
```

UPGRADING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Upgrading Slack-Ruby-Bot-Server
55

66
#### Replaced Pagination Gem for ActiveRecord
77

8-
[`cursor_pagination`](https://github.com/Kukunin/cursor_pagination) is abandoned and no longer maintained. It is repaced with [`pagy_cursor`](https://github.com/Uysim/pagy-cursor).
8+
[`cursor_pagination`](https://github.com/Kukunin/cursor_pagination) is abandoned and no longer maintained. It is replaced with [`pagy_cursor`](https://github.com/Uysim/pagy-cursor).
99

1010
If you're using ActiveRecord, replace `cursor_pagination` with `pagy_cursor` in the Gemfile.
1111

0 commit comments

Comments
 (0)