Skip to content

Commit

Permalink
Identifier 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrubin authored Apr 4, 2019
2 parents 01e22dc + f2f271c commit 8205e96
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Identifier.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "Identifier"
spec.version = "0.1.1"
spec.version = "1.0.0"
spec.summary = "Unique, strongly-typed identifiers in Swift."
spec.description = "`Identifier` is a generic struct backed by a UUID, which can be specialized for the model type it identifies and provides unique, decentralized identity in a value type. It is Equatable, Hashable, and Codable, serializing to a simple UUID string."
spec.homepage = "https://github.com/mattrubin/Identifier"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ struct Comment: Equatable, Codable {
Add the following line to your [Cartfile][]:

````config
github "mattrubin/Identifier" ~> 0.1
github "mattrubin/Identifier" ~> 1.0
````

Then run `carthage update Identifier` to install the latest version of the framework.
Expand All @@ -53,7 +53,7 @@ Be sure to check the Carthage README file for the latest instructions on [adding
Add the following line to your [Podfile][]:

````ruby
pod 'Identifier', '~> 0.1'
pod 'Identifier', '~> 1.0'
````

Identifier, like all pods written in Swift, can only be integrated as a framework. Make sure to add the line `use_frameworks!` to your Podfile or target to opt into frameworks instead of static libraries.
Expand All @@ -68,7 +68,7 @@ Then run `pod install` to install the latest version of the framework.
Add the following line to the dependencies section of your [package manifest][Package.swift]:

```swift
.package(url: "https://github.com/mattrubin/Identifier.git", from: "0.1.0"),
.package(url: "https://github.com/mattrubin/Identifier.git", from: "1.0.0"),
```

Then add `"Identifier"` to the dependencies array of any target which should be linked with this library
Expand Down
2 changes: 1 addition & 1 deletion Sources/Identifier/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1.1</string>
<string>1.0.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion Tests/IdentifierTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>0.1.1</string>
<string>1.0.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
Expand Down

0 comments on commit 8205e96

Please sign in to comment.