Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

Commit

Permalink
chore(release): v1.0.0-beta.2 (#71)
Browse files Browse the repository at this point in the history
Mark this SDK as deprecated.
  • Loading branch information
carleeto authored Feb 15, 2024
1 parent 2b662a8 commit 018c6c4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 26 deletions.
22 changes: 2 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.0.0-beta.2] - 2024-02-15

### Added

for new features.

### Changed

for changes in existing functionality.

### Deprecated

for soon-to-be removed features.

### Removed

for removed features.

### Fixed

for any bug fixes.
This SDK has been deprecated. If you're building apps with Immutable, please use [Immutable's Unified SDK](https://github.com/immutable/ts-immutable-sdk)

## [1.0.0-beta.1] - 2022-11-28

Expand Down
6 changes: 3 additions & 3 deletions ImmutableXCore.podspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Pod::Spec.new do |spec|
spec.name = 'ImmutableXCore'
spec.version = '1.0.0-beta.1'
spec.summary = 'The ImmutableX Core SDK Swift for applications written on the ImmutableX platform.'
spec.version = '1.0.0-beta.2'
spec.summary = 'The ImmutableX Core SDK Swift for applications has been deprecated.'

spec.description = <<-DESC
The Immutable Core SDK Swift provides convenient access to the Immutable API's for applications written on the ImmutableX platform.
The Immutable Core SDK Swift has been deperecated. Please use Immutable's Unified SDK instead.
DESC

spec.homepage = 'https://github.com/immutable/imx-core-sdk-swift'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ In your `Package.swift`:

```swift
dependencies: [
.package(url: "https://github.com/immutable/imx-core-sdk-swift.git", from: "1.0.0-beta.1")
.package(url: "https://github.com/immutable/imx-core-sdk-swift.git", from: "1.0.0-beta.2")
]
```

Expand Down
2 changes: 1 addition & 1 deletion Sources/ImmutableXCore/ImmutableX.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public struct ImmutableX {
public var logLevel: ImmutableXHTTPLoggingLevel

/// Returns the version of the sdk
internal var sdkVersion: String = "1.0.0-beta.1"
internal var sdkVersion: String = "1.0.0-beta.2"

private let createTradeWorkflow: CreateTradeWorkflow.Type
private let createOrderWorkflow: CreateOrderWorkflow.Type
Expand Down
2 changes: 1 addition & 1 deletion Tests/ImmutableXCoreTests/ImmutableXTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ final class ImmutableXTests: XCTestCase {
}

func testSdkVersion() {
XCTAssertEqual(ImmutableX.shared.sdkVersion, "1.0.0-beta.1")
XCTAssertEqual(ImmutableX.shared.sdkVersion, "1.0.0-beta.2")
}

func testInitialize() {
Expand Down

0 comments on commit 018c6c4

Please sign in to comment.