Skip to content

Commit

Permalink
Merge pull request #620 from seratch/version-4.9.0-release
Browse files Browse the repository at this point in the history
version 4.9.0 release
  • Loading branch information
seratch committed Jan 27, 2021
2 parents 0fe83a2 + d9c5322 commit b538b5b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/maintainers_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ coffeescript syntax. This ensures that backwards compatibility is tested and the
### Generating Documentation

The source files are contained in the `docs` directory. The documentation is built using [Jekyll](https://jekyllrb.com/) and hosted with GitHub Pages. The documentation is built automatically with each
merge to `master` on GitHub.
merge to `main` on GitHub.

### Releasing

Expand All @@ -31,11 +31,11 @@ merge to `master` on GitHub.
* Commit with a message including the new version number. For example `v1.0.8`.
* Tag the commit with the version number. For example `v1.0.8`.

2. Merge into master repository
2. Merge into main repository
* Create a pull request with the commit that was just made. Be certain to include the tag. For
example: `git push username master:rel-v1.0.8 && git push --tags username`.
example: `git push username main:rel-v1.0.8 && git push --tags username`.
* Once tests pass and a reviewer has approved, merge the pull request. You will also want to
update your local `master` branch.
update your local `main` branch.

3. Distribute the release
* Publish to the package manager. Once you have permission to publish on npm, you can run `npm publish`.
Expand All @@ -58,7 +58,7 @@ using git.

### Branches

`master` is where active development occurs. Long running named feature branches are occasionally
`main` is where active development occurs. Long running named feature branches are occasionally
created for collaboration on a feature that has a large scope (because everyone cannot push commits
to another person's open Pull Request). At some point in the future after a major version increment,
there may be maintenance branches for older major versions.
Expand Down
8 changes: 8 additions & 0 deletions docs/_posts/2021-01-26-v4.9.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: changelog
---

* #557 #612 Enable to increase page size for Web API calls - thanks @kintarowins @iancward
* #615 #617 res.message.user is invalid when a message posted using a user token - thanks @buzztaiki

Here is the list of all the issues/pull requests in this release: https://github.com/slackapi/hubot-slack/issues?q=milestone%3A4.9.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hubot-slack",
"version": "4.8.1",
"version": "4.9.0",
"description": "A Slack adapter for hubot",
"main": "./slack",
"scripts": {
Expand Down

0 comments on commit b538b5b

Please sign in to comment.