Merge pull request #3 from yaslab/release-1.1.0

Release 1.1.0
This commit is contained in:
Yasuhiro Hatta 2019-06-22 23:55:38 +09:00 committed by GitHub
commit 05ce7a7b7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View File

@ -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

View File

@ -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>

View File

@ -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