diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e487a11..cdd2b3f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,4 +70,4 @@ jobs: git push -q -u origin "docs-${{ env.VERSION }}" # Push to docs branch - gh pr create -t "docs(${{ env.VERSION }}): update markdown docs" + gh pr create --fill -t "docs(${{ env.VERSION }}): update markdown docs" diff --git a/CHANGELOG.md b/CHANGELOG.md index ca69755..c8a7a42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ 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. +## [1.5.0](https://github.com/GetStream/stream-cli/compare/v1.4.6...v1.5.0) (2022-09-23) + + +### Features + +* add devices validation for import ([#144](https://github.com/GetStream/stream-cli/issues/144)) ([4ab96e7](https://github.com/GetStream/stream-cli/commit/4ab96e7c48ee4421a1766393aa73b24b8d233c9d)) +* add deactivated_at support into user import ([#147](https://github.com/GetStream/stream-cli/issues/147)) ([fbe96232](https://github.com/GetStream/stream-cli/commit/fbe96232e86bbafd6d5c83953dad1071c1e5ffbc)) + + ### [1.4.6](https://github.com/GetStream/stream-cli/compare/v1.4.5...v1.4.6) (2022-06-08) diff --git a/pkg/version/version.go b/pkg/version/version.go index ded8d9e..8155932 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -6,8 +6,8 @@ import ( const ( versionMajor = 1 - versionMinor = 4 - versionPatch = 5 + versionMinor = 5 + versionPatch = 0 ) func FmtVersion() string {