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

Commit

Permalink
build: release version v0.2.2
Browse files Browse the repository at this point in the history
Removed SwiftLint as a Plugin. Since SPM doesn't support package alias
for now, this plugin would conflict with apps that use it and try to
import this library.
  • Loading branch information
CassiusPacheco committed Aug 17, 2022
1 parent 6427e04 commit 47b0f1c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ for now removed features.

for any bug fixes.

## [0.2.2] - 2022-08-17

### Removed

- SwiftLint as a Plugin. Since SPM doesn't support package alias for now, this plugin would conflict with apps that use
it and try to import this library.

## [0.2.1] - 2022-08-11

### Fixed
Expand Down
4 changes: 2 additions & 2 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.2.1'
spec.version = '0.2.2'
spec.summary = 'The Immutable X Core SDK Swift for applications written on the Immutable X platform.'

spec.description = <<-DESC
Expand All @@ -25,4 +25,4 @@ Pod::Spec.new do |spec|
spec.dependency 'secp256k1.swift', '~> 0.1'

spec.resources = ['Sources/ImmutableXCore/version']
end
end
4 changes: 2 additions & 2 deletions 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.2.1")
.package(url: "https://github.com/immutable/imx-core-sdk-swift.git", from: "0.2.2")
]
```

Expand Down Expand Up @@ -161,7 +161,7 @@ for any bug fixes.
The `Sources/version` file will hold the value of the previous release

```yaml
0.2.1
0.2.2
```

## Contributing
Expand Down
2 changes: 1 addition & 1 deletion Sources/ImmutableXCore/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.1
0.2.2
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.2.1")
XCTAssertEqual(ImmutableXCore.shared.sdkVersion, "0.2.2")
}

func testInitialize() {
Expand Down

0 comments on commit 47b0f1c

Please sign in to comment.