diff --git a/CHANGELOG.md b/CHANGELOG.md index 58dfded..d468a7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ # Changelog -All notable changes to this project will be documented in this file. +## [1.0.0-beta.3] - 2024-02-15 -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). +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) + +Old releases can be found [here](https://github.com/immutable/imx-core-sdk-swift/releases) ## [1.0.0-beta.2] - 2024-02-15 diff --git a/ImmutableXCore.podspec b/ImmutableXCore.podspec index daf447d..e4d361b 100644 --- a/ImmutableXCore.podspec +++ b/ImmutableXCore.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'ImmutableXCore' - spec.version = '1.0.0-beta.2' + spec.version = '1.0.0-beta.3' spec.summary = 'The ImmutableX Core SDK Swift for applications has been deprecated.' spec.description = <<-DESC diff --git a/Sources/ImmutableXCore/ImmutableX.swift b/Sources/ImmutableXCore/ImmutableX.swift index d805282..5dc698d 100644 --- a/Sources/ImmutableXCore/ImmutableX.swift +++ b/Sources/ImmutableXCore/ImmutableX.swift @@ -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.2" + internal var sdkVersion: String = "1.0.0-beta.3" private let createTradeWorkflow: CreateTradeWorkflow.Type private let createOrderWorkflow: CreateOrderWorkflow.Type diff --git a/Tests/ImmutableXCoreTests/ImmutableXTests.swift b/Tests/ImmutableXCoreTests/ImmutableXTests.swift index 093b575..52224d4 100644 --- a/Tests/ImmutableXCoreTests/ImmutableXTests.swift +++ b/Tests/ImmutableXCoreTests/ImmutableXTests.swift @@ -187,7 +187,7 @@ final class ImmutableXTests: XCTestCase { } func testSdkVersion() { - XCTAssertEqual(ImmutableX.shared.sdkVersion, "1.0.0-beta.2") + XCTAssertEqual(ImmutableX.shared.sdkVersion, "1.0.0-beta.3") } func testInitialize() {