Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
lexrus committed Sep 20, 2020
1 parent afbe07c commit 462f9e3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LTMorphingLabel.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "LTMorphingLabel"
s.version = "0.9.1"
s.version = "0.9.2"
s.summary = "Graceful morphing effects for UILabel written in Swift."
s.description = <<-DESC
A morphing UILabel subclass written in Swift.
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let package = Package(
.binaryTarget(
name: "LTMorphingLabel",
url: "https://github.com/lexrus/LTMorphingLabel/releases/download/0.9.2/LTMorphingLabel.xcframework.zip",
checksum: "a3a12be1e08b84b7d9a1dd99806bc524b4515c277794d325155bb6e06ed2584a"
checksum: "352b9e31aa455969c676eb2a546142e7040655d9a26d5277ba2dda00ce534446"
)
]
)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ You can manually download the pre-compiled LTMorphingLabel.xcframework.zip from
1. Add the following to your Package.swift:

```swift
.package(url: "https://github.com/lexrus/LTMorphingLabel.git", .upToNextMajor(from: "0.9.1")),
.package(url: "https://github.com/lexrus/LTMorphingLabel.git", .upToNextMajor(from: "0.9.2")),
```

2. Next, add `LTMorphingLabel` to your App targets dependencies like so:
Expand Down
4 changes: 2 additions & 2 deletions build_xcframework.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/bin/bash

PROJECT_FILE="LTMorphingLabelDemo.xcodeproj"
SCHEME="LTMorphingLabel"
SCHEME="MorphingLabel"
BUILD_FOLDER="Build/MorphingLabel"

mkdir -p Build

iOS Simulator
# iOS Simulator
xcodebuild archive -project "$PROJECT_FILE" -scheme "$SCHEME" -configuration Release \
-archivePath "$BUILD_FOLDER/Simulator" \
-sdk iphonesimulator \
Expand Down

0 comments on commit 462f9e3

Please sign in to comment.