Skip to content

Commit fb0e489

Browse files
Release/2.0.1 (SourceDocs#74)
* Update CHANGELOG with 2.0.1 * Update Makefile VERSION variable * Update version in main.swift * Update expected version in tests * Cleanup install github action
1 parent 27c779e commit fb0e489

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

.github/workflows/install.yml

-8
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ jobs:
1616
name: Install from Source on macOS
1717
runs-on: macos-latest
1818
steps:
19-
# - name: Setup Swift
20-
# uses: fwal/[email protected]
21-
# with:
22-
# swift-version: 5.5
2319
- name: Checkout
2420
uses: actions/[email protected]
2521
- name: Install SourceDocs
@@ -36,10 +32,6 @@ jobs:
3632
run: |
3733
sudo apt-get update
3834
sudo apt-get install -y libsqlite3-dev libedit-dev
39-
# - name: Setup Swift
40-
# uses: fwal/[email protected]
41-
# with:
42-
# swift-version: 5.5
4335
- name: Checkout
4436
uses: actions/[email protected]
4537
- name: Install SourceDocs

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
#### Bug Fixes
1010
- None
1111

12+
## 2.0.1
13+
14+
- Updates required for Xcode 13.3 + Swift 5.6
15+
- Bump dependencies
16+
1217
## 2.0.0
1318

1419
- Remove dependency on SwiftPM module for package dump decoding

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
TOOL_NAME = sourcedocs
2-
VERSION = 2.0.0
2+
VERSION = 2.0.1
33

44
PREFIX = /usr/local
55
INSTALL_PATH = $(PREFIX)/bin/$(TOOL_NAME)

Sources/SourceDocsCLI/main.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Foundation
99
import ArgumentParser
1010

1111
struct SourceDocs: ParsableCommand {
12-
static let version = "2.0.0"
12+
static let version = "2.0.1"
1313
static let defaultOutputPath = "Documentation/Reference"
1414
static let defaultLinkEnding = ".md"
1515
static let defaultLinkBeginning = ""

Tests/SourceDocsCLITests/VersionCommandTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import ProcessRunner
1010

1111
class VersionCommandTests: XCTestCase {
1212

13-
let expectedVersion = "2.0.0"
13+
let expectedVersion = "2.0.1"
1414

1515
func testVersion() throws {
1616
let result = try system(command: binaryURL.path, parameters: ["version"], captureOutput: true)

0 commit comments

Comments
 (0)