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

Commit

Permalink
build: bump version to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
CassiusPacheco committed Oct 19, 2022
1 parent 1da60ad commit 05ba329
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ for now removed features.

for any bug fixes.

## [0.3.0] - 2022-10-19
## [0.3.1] - 2022-10-19

### Removed

Expand Down
5 changes: 2 additions & 3 deletions ImmutableXCore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'ImmutableXCore'
spec.version = '0.3.0'
spec.version = '0.3.1'
spec.summary = 'The Immutable X Core SDK Swift for applications written on the Immutable X platform.'

spec.description = <<-DESC
Expand All @@ -12,13 +12,12 @@ Pod::Spec.new do |spec|
spec.license = { :type => 'Apache License 2.0', :file => 'LICENSE' }
spec.author = { 'Immutable' => '[email protected]'}

spec.source = { :git => 'https://github.com/immutable/imx-core-sdk-swift.git', :tag => "v#{spec.version}" }
spec.source = { :git => 'https://github.com/immutable/imx-core-sdk-swift.git', :tag => "v0.3.1" }
spec.source_files = 'Sources/**/*.swift'

spec.swift_version = '5.7'

spec.ios.deployment_target = '13'
spec.osx.deployment_target = '10.15'

spec.dependency 'AnyCodable-FlightSchool', '~> 0.6'
spec.dependency 'BigInt', '~> 5.2.0'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ In your `Package.swift`:

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

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

/// Returns the version of the sdk
internal var sdkVersion: String = "0.3.0"
internal var sdkVersion: String = "0.3.1"

private let buyWorkflow: BuyWorkflow.Type
private let sellWorkflow: SellWorkflow.Type
Expand Down
2 changes: 1 addition & 1 deletion Tests/ImmutableXCoreTests/ImmutableXCoreTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ final class ImmutableXCoreTests: XCTestCase {
}

func testSdkVersion() {
XCTAssertEqual(ImmutableXCore.shared.sdkVersion, "0.3.0")
XCTAssertEqual(ImmutableXCore.shared.sdkVersion, "0.3.1")
}

func testInitialize() {
Expand Down

0 comments on commit 05ba329

Please sign in to comment.