Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
1ec5 committed Feb 19, 2021
1 parent 2ead35a commit eacab01
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -66,21 +66,21 @@ Solar is available through CocoaPods, Carthage, and Swift Package Manager.
To include Solar in an application, add the following [pod](https://guides.cocoapods.org/syntax/podfile.html#pod) to your Podfile, then run `pod install`:

```ruby
pod "Solar", "~> 2.3"
pod "Solar", "~> 2.2"
```

To include Solar in another pod, add the following [dependency](https://guides.cocoapods.org/syntax/podspec.html#dependency) to your podspec:

```ruby
s.dependency "Solar", "~> 2.3"
s.dependency "Solar", "~> 2.2"
```

### Carthage

Add the `ceek/Solar` project to your [Cartfile](https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#cartfile), then follow the rest of [Carthage’s XCFramework installation instructions](https://github.com/Carthage/Carthage#building-platform-independent-xcframeworks-xcode-12-and-above):

```ruby
github "ceeK/Solar" ~> 2.3
github "ceeK/Solar" ~> 2.2
```

### Swift Package Manager
Expand All @@ -89,12 +89,12 @@ To include Solar in an application in Xcode:

1. Go to File ‣ Swift Packages ‣ Add Package Dependency.
1. Enter `https://github.com/ceeK/Solar.git` as the package repository and click Next.
1. Set Rules to Version, Up to Next Major, and enter `2.3.0` as the minimum version requirement. Click Next.
1. Set Rules to Version, Up to Next Major, and enter `2.2.0` as the minimum version requirement. Click Next.

To include Solar in another Swift package, add the following [dependency](https://developer.apple.com/documentation/swift_packages/package/dependency) to your Package.swift:

```swift
.package(name: "Solar", url: "https://github.com/ceeK/Solar.git", from: "2.3.0")
.package(name: "Solar", url: "https://github.com/ceeK/Solar.git", from: "2.2.0")
```

# License
Expand Down
2 changes: 1 addition & 1 deletion Solar/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.3.0</string>
<string>2.2.0</string>
<key>CFBundleVersion</key>
<string>2</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion SolarTests/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>2.3.0</string>
<string>2.2.0</string>
<key>CFBundleVersion</key>
<string>2</string>
</dict>
Expand Down

0 comments on commit eacab01

Please sign in to comment.