Skip to content

Commit

Permalink
docs: update document guideline for new version 1.1.0 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
lengocduy authored Jun 27, 2021
1 parent 3ec24d1 commit bfc1ef8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DLAnalytics.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |spec|
#

spec.name = "DLAnalytics"
spec.version = "1.0.0"
spec.version = "1.1.0"
spec.summary = "Swift's Framework Analytics"

# This description is used to generate tags and improve search results.
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,17 +78,20 @@ There are three ways to install `DLAnalytics`
Just add to your project's `Podfile`:

```
pod 'DLAnalytics', '~> 1.0'
pod 'DLAnalytics', '~> 1.1'
```

### Carthage

Add following to `Cartfile`:

```
github "lengocduy/DLAnalytics"
github "lengocduy/DLAnalytics" ~> 1.1
```

- To building platform-independent xcframeworks Xcode 12 and above [here](https://github.com/Carthage/Carthage#building-platform-independent-xcframeworks-xcode-12-and-above)
- To migrating from framework bundles to xcframework [here](https://github.com/Carthage/Carthage#migrating-a-project-from-framework-bundles-to-xcframeworks)

### Swift Package Manager

Create a `Package.swift` file:
Expand All @@ -102,7 +105,7 @@ let package = Package(
name: "TestDLAnalytics",
dependencies: [
.package(url: "https://github.com/lengocduy/DLAnalytics.git", from: "1.0.0"),
.package(url: "https://github.com/lengocduy/DLAnalytics.git", from: "1.1.0"),
],
targets: [
Expand Down

0 comments on commit bfc1ef8

Please sign in to comment.