Skip to content

Commit 8205e96

Browse files
authored
Identifier 1.0.0
2 parents 01e22dc + f2f271c commit 8205e96

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Identifier.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "Identifier"
3-
spec.version = "0.1.1"
3+
spec.version = "1.0.0"
44
spec.summary = "Unique, strongly-typed identifiers in Swift."
55
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."
66
spec.homepage = "https://github.com/mattrubin/Identifier"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ struct Comment: Equatable, Codable {
3737
Add the following line to your [Cartfile][]:
3838

3939
````config
40-
github "mattrubin/Identifier" ~> 0.1
40+
github "mattrubin/Identifier" ~> 1.0
4141
````
4242

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

5555
````ruby
56-
pod 'Identifier', '~> 0.1'
56+
pod 'Identifier', '~> 1.0'
5757
````
5858

5959
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.
@@ -68,7 +68,7 @@ Then run `pod install` to install the latest version of the framework.
6868
Add the following line to the dependencies section of your [package manifest][Package.swift]:
6969

7070
```swift
71-
.package(url: "https://github.com/mattrubin/Identifier.git", from: "0.1.0"),
71+
.package(url: "https://github.com/mattrubin/Identifier.git", from: "1.0.0"),
7272
```
7373

7474
Then add `"Identifier"` to the dependencies array of any target which should be linked with this library

Sources/Identifier/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.1.1</string>
18+
<string>1.0.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>

Tests/IdentifierTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.1.1</string>
18+
<string>1.0.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>

0 commit comments

Comments
 (0)