commit
05ce7a7b7d
|
@ -64,19 +64,19 @@ print(ulid.ulidString) // 01D132CXJVYQ7091KZPZR5WH1X
|
|||
### CocoaPods
|
||||
|
||||
```
|
||||
pod 'ULID.swift', '~> 1.0.0'
|
||||
pod 'ULID.swift', '~> 1.1.0'
|
||||
```
|
||||
|
||||
### Carthage
|
||||
|
||||
```
|
||||
github "yaslab/ULID.swift" ~> 1.0.0
|
||||
github "yaslab/ULID.swift" ~> 1.1.0
|
||||
```
|
||||
|
||||
### Swift Package Manager
|
||||
|
||||
```
|
||||
.package(url: "https://github.com/yaslab/ULID.swift.git", .upToNextMinor(from: "1.0.0"))
|
||||
.package(url: "https://github.com/yaslab/ULID.swift.git", .upToNextMinor(from: "1.1.0"))
|
||||
```
|
||||
|
||||
## License
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.0</string>
|
||||
<string>1.1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
</dict>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |spec|
|
||||
spec.name = 'ULID.swift'
|
||||
spec.version = '1.0.0'
|
||||
spec.version = '1.1.0'
|
||||
spec.license = { :type => 'MIT' }
|
||||
spec.homepage = 'https://github.com/yaslab/ULID.swift'
|
||||
spec.authors = { 'Yasuhiro Hatta' => 'hatta.yasuhiro@gmail.com' }
|
||||
|
@ -14,4 +14,5 @@ Pod::Spec.new do |spec|
|
|||
spec.osx.deployment_target = '10.9'
|
||||
|
||||
spec.module_name = 'ULID'
|
||||
spec.swift_version = '5.0'
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue