Skip to content

Commit 2e4cdfb

Browse files
committed
Update README for version 0.0.2
Since v0.0.1 has the wrong declared name, we want to encourage users to depend on v0.0.2 or later instead.
1 parent 650f782 commit 2e4cdfb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ See `Guide.playground` for more information on usage.
99
To use `Deque` in a SwiftPM project, add the following line to the dependencies in your `Package.swift` file:
1010

1111
```swift
12-
.package(url: "https://github.com/lilyball/swift-deque", from: "0.0.1"),
12+
.package(url: "https://github.com/lilyball/swift-deque", from: "0.0.2"),
1313
```
1414

1515
Because `Deque` is still pre-1.0, source-stability is only guaranteed within minor versions. If you don't want potentially source-breaking package updates, use this dependency specification instead:
1616

1717
```swift
18-
.package(url: "https://github.com/lilyball/swift-deque", .upToNextMinor(from: "0.0.1")),
18+
.package(url: "https://github.com/lilyball/swift-deque", .upToNextMinor(from: "0.0.2")),
1919
```
2020

2121
Finally, include `"Deque"` as a dependency for your target:
@@ -24,7 +24,7 @@ Finally, include `"Deque"` as a dependency for your target:
2424
let package = Package(
2525
// name, etc…
2626
dependencies: [
27-
.package(url: "https://github.com/lilyball/swift-deque", .upToNextMinor(from: "0.0.1")),
27+
.package(url: "https://github.com/lilyball/swift-deque", .upToNextMinor(from: "0.0.2")),
2828
],
2929
targets: [
3030
.target(name: "<target name>", dependencies: [

0 commit comments

Comments
 (0)