Tag 0.5.0
This commit is contained in:
16
.travis.yml
16
.travis.yml
@@ -16,17 +16,17 @@ xcode_scheme: Path.swift-Package
|
|||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- script: swift test --parallel
|
- script: swift test --parallel
|
||||||
name: macOS
|
name: macOS / Swift 4.2.1
|
||||||
|
|
||||||
- &xcodebuild
|
- &xcodebuild
|
||||||
before_install: swift package generate-xcodeproj
|
before_install: swift package generate-xcodeproj
|
||||||
xcode_destination: platform=iOS Simulator,OS=latest,name=iPhone XS
|
xcode_destination: platform=iOS Simulator,OS=latest,name=iPhone XS
|
||||||
name: iOS
|
name: iOS / Swift 4.2.1
|
||||||
- <<: *xcodebuild
|
- <<: *xcodebuild
|
||||||
xcode_destination: platform=tvOS Simulator,OS=latest,name=Apple TV
|
xcode_destination: platform=tvOS Simulator,OS=latest,name=Apple TV
|
||||||
name: tvOS
|
name: tvOS / Swift 4.2.1
|
||||||
- <<: *xcodebuild
|
- <<: *xcodebuild
|
||||||
name: watchOS
|
name: watchOS / Swift 4.2.1
|
||||||
script: |
|
script: |
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
xcodebuild \
|
xcodebuild \
|
||||||
@@ -50,7 +50,7 @@ jobs:
|
|||||||
name: Linux / Swift 5.0.0-dev (2019-01-22)
|
name: Linux / Swift 5.0.0-dev (2019-01-22)
|
||||||
|
|
||||||
- stage: pretest
|
- stage: pretest
|
||||||
name: Check if Linux tests are up-to-date
|
name: Check Linux tests are sync’d
|
||||||
install: swift test --generate-linuxmain
|
install: swift test --generate-linuxmain
|
||||||
script: git diff --exit-code
|
script: git diff --exit-code
|
||||||
|
|
||||||
@@ -71,9 +71,9 @@ jobs:
|
|||||||
github_url: https://github.com/mxcl/Path.swift
|
github_url: https://github.com/mxcl/Path.swift
|
||||||
EOF
|
EOF
|
||||||
sed -i '' "s/TRAVIS_TAG/$TRAVIS_TAG/" .jazzy.yaml
|
sed -i '' "s/TRAVIS_TAG/$TRAVIS_TAG/" .jazzy.yaml
|
||||||
# ^^ this weirdness because Travis multiline YAML is broken and inserts two
|
# ^^ this weirdness because Travis multiline YAML is broken and inserts
|
||||||
# spaces in front of the output which means we need a prefixed delimiter which
|
# two spaces in front of the output which means we need a prefixed
|
||||||
# also weirdly stops bash from doing variable substitution
|
# delimiter which also weirdly stops bash from doing variable substitution
|
||||||
install: gem install jazzy
|
install: gem install jazzy
|
||||||
before_script: swift package generate-xcodeproj
|
before_script: swift package generate-xcodeproj
|
||||||
script: jazzy
|
script: jazzy
|
||||||
|
|||||||
14
README.md
14
README.md
@@ -191,17 +191,23 @@ Path("~foo") // => nil
|
|||||||
SwiftPM:
|
SwiftPM:
|
||||||
|
|
||||||
```swift
|
```swift
|
||||||
package.append(.package(url: "https://github.com/mxcl/Path.swift", from: "0.4.1"))
|
package.append(.package(url: "https://github.com/mxcl/Path.swift", from: "0.5.0"))
|
||||||
```
|
```
|
||||||
|
|
||||||
CocoaPods:
|
CocoaPods:
|
||||||
|
|
||||||
```ruby
|
```ruby
|
||||||
pod 'Path.swift' ~> '0.4.1'
|
pod 'Path.swift' ~> '0.5.0'
|
||||||
```
|
```
|
||||||
|
|
||||||
Please note! We are pre 1.0, thus we can change the API as we like! We will tag
|
Carthage:
|
||||||
1.0 as soon as possible.
|
|
||||||
|
> Waiting on: [@Carthage#1945](https://github.com/Carthage/Carthage/pull/1945).
|
||||||
|
|
||||||
|
## Please note
|
||||||
|
|
||||||
|
We are pre 1.0, thus we can change the API as we like, and we will (to the
|
||||||
|
pursuit of getting it *right*)! We will tag 1.0 as soon as possible.
|
||||||
|
|
||||||
### Get push notifications for new releases
|
### Get push notifications for new releases
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user