Skip to content

Commit eb3301a

Browse files
committed
Bump from 0.1.2 to 0.2.0
1 parent 42c2631 commit eb3301a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Example: `FooTools` folder.
5050
.macOS(.v11),
5151
],
5252
dependencies: [
53-
.package(url: "https://github.com/uhooi/swift-output-uhooi", exact: "0.1.2"),
53+
.package(url: "https://github.com/uhooi/swift-output-uhooi", exact: "0.2.0"),
5454
],
5555
targets: [.target(name: "FooTools", path: "")]
5656
)
@@ -68,7 +68,7 @@ Example: `FooTools` folder.
6868
### Use the binary
6969

7070
```shell
71-
$ curl -OL https://github.com/uhooi/swift-output-uhooi/releases/download/0.1.2/uhooi.zip
71+
$ curl -OL https://github.com/uhooi/swift-output-uhooi/releases/download/0.2.0/uhooi.zip
7272
$ unzip -o uhooi.zip
7373
$ rm -f uhooi.zip
7474

Sources/OutputUhooi/main.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ struct Uhooi: ParsableCommand {
55

66
static var configuration = CommandConfiguration(
77
abstract: "Uhooi speak the phrase.",
8-
version: "0.1.2"
8+
version: "0.2.0"
99
)
1010

1111
@Flag(help: "Include a counter with each repetition.")

Tests/OutputUhooiTests/OutputUhooiTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ final class OutputUhooiTests: XCTestCase {
5858
}
5959

6060
func test_Uhooi_version() throws {
61-
try checkOutput(arguments: ["--version"], expected: "0.1.2\n", line: #line)
61+
try checkOutput(arguments: ["--version"], expected: "0.2.0\n", line: #line)
6262
}
6363

6464
// MARK: - Other Private Methods

0 commit comments

Comments
 (0)