Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.9.0 #75

Merged
merged 1 commit into from
Feb 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/initiate_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh pr create \
-t "Release ${{ github.event.inputs.version }}" \
-t "chore: release ${{ github.event.inputs.version }}" \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe others too

-b "# :rocket: ${{ github.event.inputs.version }}
Make sure to use squash & merge when merging!
Once this is merged, another job will kick off automatically and publish the package.
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## 2.9.0 (2022-02-04)


### Features

* add custom http client possibility ([#73](https://github.com/GetStream/stream-chat-php/issues/73)) ([e72f104](https://github.com/GetStream/stream-chat-php/commit/e72f104b41b45540ac98443d6bb7ef2d9b82a6a2))
* add full feature parity ([#71](https://github.com/GetStream/stream-chat-php/issues/71)) ([1377507](https://github.com/GetStream/stream-chat-php/commit/1377507475f3175bd82faf2e72ec71540335a3eb))
* add ratelimit to response ([#72](https://github.com/GetStream/stream-chat-php/issues/72)) ([4ffdaa1](https://github.com/GetStream/stream-chat-php/commit/4ffdaa194fd29c6dbb83488b3b067b631ebc24b5))


### Bug Fixes

* fix invitation and channel update logic ([#74](https://github.com/GetStream/stream-chat-php/issues/74)) ([ccf956c](https://github.com/GetStream/stream-chat-php/commit/ccf956c4c13437f7849a1efae50d38c29730f04f))

## 2.8.0 (2022-01-18)


Expand Down
2 changes: 1 addition & 1 deletion lib/GetStream/StreamChat/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
class Constant
{
const VERSION = '2.8.0';
const VERSION = '2.9.0';
}

/**
Expand Down