Skip to content

Commit

Permalink
chore: version package
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 7, 2024
1 parent 0506e7c commit b4bfc5c
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
5 changes: 0 additions & 5 deletions .changeset/popular-berries-press.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/twelve-grapes-remain.md

This file was deleted.

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

## 3.0.0

### Major Changes

- 0506e7c: 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

- 0506e7c: Internal: Fetching notifications from `/notifications` endpoint instead of GraphQL

## 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 @@ -73,7 +73,7 @@ This repo also contains a full-blown example. To run the project:
To install MagicBell using [CocoaPods](https://cocoapods.org), add this entry to your `Podfile`:

```ruby
pod 'MagicBell', '>=2.0.0'
pod 'MagicBell', '>=3.0.0'
```

**IMPORTANT**: Make sure you specify `use_frameworks!` in your `Podfile`.
Expand All @@ -86,7 +86,7 @@ To install MagicBell using [Swift Package Manager](https://www.swift.org/package

```swift
dependencies: [
.package(url: "https://github.com/magicbell/magicbell-swift", .upToNextMajor(from: "2.0.0"))
.package(url: "https://github.com/magicbell/magicbell-swift", .upToNextMajor(from: "3.0.0"))
]
```

Expand Down
2 changes: 1 addition & 1 deletion Source/MagicBellClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let magicBellTag = "MagicBell"
public class MagicBellClient {

/// The MagicBell SDK version
public static let version = "2.0.0"
public static let version = "3.0.0"

private let sdkProvider: SDKComponent

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-swift",
"version": "2.0.0",
"version": "3.0.0",
"private": true,
"type": "module",
"devDependencies": {
Expand Down

0 comments on commit b4bfc5c

Please sign in to comment.