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 0.6.0 #62

Merged
merged 2 commits into from
Nov 14, 2023
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## 0.6.0 - November 14, 2023

- **Breaking:** The Mobile Checkout SDK has been rebranded to the Shopify Checkout Kit for Swift. To match this new name, the package has been renamed to `ShopifyCheckoutKit`.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The SDK is an open-source [Swift Package library](https://www.swift.org/package-

```swift
dependencies: [
.package(url: "https://github.com/Shopify/checkout-kit-swift", from: "0.5.0")
.package(url: "https://github.com/Shopify/checkout-kit-swift", from: "0.6.0")
]
```

Expand Down
2 changes: 1 addition & 1 deletion Sources/ShopifyCheckoutKit/ShopifyCheckoutKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SO
import UIKit

/// The version of the `ShopifyCheckoutKit` library.
public let version = "0.5.0"
public let version = "0.6.0"

/// The configuration options for the `ShopifyCheckoutKit` library.
public var configuration = Configuration() {
Expand Down