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

chore: version package #26

Merged
merged 1 commit into from
Oct 11, 2024
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
8 changes: 0 additions & 8 deletions .changeset/friendly-cats-beg.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/ninety-geckos-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spotty-eels-hope.md

This file was deleted.

17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# MagicBell Android SDK

## 3.0.0

### Major Changes

- f3915c7: Updated topic and category filtering APIs in `StorePredicate`

Previously one was able to filter for multiple topics and categories, but this functionality is now deprecated in favor of only filtering for a single topic and category.
Please reach out to us via the [Community](http://www.magicbell.com/community) if you need the previous functionality.

### Minor Changes

- 54f5bc5: Updated the `targetSDK` of both, `sdk` and `sdk-compose` to version `35`

Please follow the _Android SDK Upgrade Assistant_ for upgrading your own apps.

- f3915c7: Fixed a bug where a topic filter value would be passed as a category

## 2.0.0

This release is mostly compatible with version 1.0.0 of the SDK. It introduces two breaking changes though. Please consult the Readme for detailed reference.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ This repo also contains a full blown example. To run the project:
Add the dependency in your build.gradle file.
```groovy
// MagicBell SDK
implementation 'com.magicbell:magicbell-sdk:2.0.0'
implementation 'com.magicbell:magicbell-sdk:3.0.0'
// MagicBell Compose
implementation 'com.magicbell:magicbell-sdk-compose:2.0.0'
implementation 'com.magicbell:magicbell-sdk-compose:3.0.0'
```

## The MagicBell Client
Expand Down
2 changes: 1 addition & 1 deletion gradle-mvn-push.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'maven-publish'
apply plugin: 'signing'

version = '2.0.0'
version = '3.0.0'
group = 'com.magicbell'

def isReleaseBuild() {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "magicbell-android",
"version": "2.0.0",
"version": "3.0.0",
"private": true,
"type": "module",
"devDependencies": {
Expand Down
Loading