Skip to content

Commit 9d5e407

Browse files
authored
Update docs for the 0.2.0 release (#58)
### Motivation We made a few breaking changes, so let's get 0.2.0 out. ### Modifications Updated docs to refer to a 0.2.0 release instead of 0.1.0. ### Result Accurate docs. ### Test Plan N/A
1 parent ab27eef commit 9d5e407

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Examples/hello-world-cli-example/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let package = Package(
1010
dependencies: [
1111
.package(
1212
url: "https://github.com/apple/swift-configuration",
13-
.upToNextMinor(from: "0.1.0"),
13+
.upToNextMinor(from: "0.2.0"),
1414
traits: [.defaults, "CommandLineArgumentsSupport"]
1515
)
1616
],

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ If both sources are unavailable, the fallback default of `60` is returned.
6161
Add the dependency to your `Package.swift`:
6262

6363
```swift
64-
.package(url: "https://github.com/apple/swift-configuration", .upToNextMinor(from: "0.1.0"))
64+
.package(url: "https://github.com/apple/swift-configuration", .upToNextMinor(from: "0.2.0"))
6565
```
6666

6767
Add the library dependency to your target:
@@ -94,7 +94,7 @@ To enable an additional trait on the package, update the package dependency:
9494
```diff
9595
.package(
9696
url: "https://github.com/apple/swift-configuration",
97-
.upToNextMinor(from: "0.1.0"),
97+
.upToNextMinor(from: "0.2.0"),
9898
+ traits: [.defaults, "OtherFeatureSupport"]
9999
)
100100
```

Sources/Configuration/Documentation.docc/Documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ These providers can be combined to form a hierarchy, for details check out <doc:
154154
Add the dependency to your `Package.swift`:
155155

156156
```swift
157-
.package(url: "https://github.com/apple/swift-configuration", .upToNextMinor(from: "0.1.0"))
157+
.package(url: "https://github.com/apple/swift-configuration", .upToNextMinor(from: "0.2.0"))
158158
```
159159

160160
Add the library dependency to your target:

0 commit comments

Comments
 (0)