Skip to content

Commit

Permalink
Prepare for v6 release (#4938)
Browse files Browse the repository at this point in the history
Co-authored-by: kanat <>
  • Loading branch information
kanat authored Aug 29, 2023
1 parent eab381e commit a084430
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@

### ❌ Removed

# August 29th, 2023 - 6.0.0

🚨🚨 **v6.0.0** release brings a lot of different enhancements. Please, make sure to check our [migration guides](https://getstream.io/chat/docs/sdk/android/migration-guides/client/push-notifications/)! 🚨🚨

If you want to learn more about these changes and our decisions, check out our [Android Chat v6 Blog Post](https://getstream.io/blog/announcement-android-sdk-6-beta/).

# August 25th, 2023 - 6.0.0-beta5

I hope you're interested in our latest major release - v6.0.0-beta5! We're currently in the process of preparing migration guides and updating all of our
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ object Configuration {
const val majorVersion = 6
const val minorVersion = 0
const val patchVersion = 0
const val versionSuffix = "-beta5"
const val versionName = "$majorVersion.$minorVersion.$patchVersion$versionSuffix"
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "io.getstream"
}
10 changes: 5 additions & 5 deletions docusaurus/android-docusaurus-dontent-docs.plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ module.exports = {
[
'@docusaurus/plugin-content-docs',
{
lastVersion: '5.x.x',
lastVersion: 'current',
versions: {
current: {
label: 'v6-Beta',
path: 'next'
label: 'v6',
},
'5.x.x': {
label: 'v5',
banner: 'none'
}
path: 'v5',
banner: 'unmaintained'
},
}
}
]
Expand Down

0 comments on commit a084430

Please sign in to comment.