Skip to content

Commit

Permalink
Release/2.0.1 (#74)
Browse files Browse the repository at this point in the history
* Update CHANGELOG with 2.0.1

* Update Makefile VERSION variable

* Update version in main.swift

* Update expected version in tests

* Cleanup install github action
  • Loading branch information
dean-harel-healthy authored Apr 2, 2022
1 parent 27c779e commit fb0e489
Showing 5 changed files with 8 additions and 11 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -16,10 +16,6 @@ jobs:
name: Install from Source on macOS
runs-on: macos-latest
steps:
# - name: Setup Swift
# uses: fwal/setup-swift@v1.9.0
# with:
# swift-version: 5.5
- name: Checkout
uses: actions/checkout@v2.4.0
- name: Install SourceDocs
@@ -36,10 +32,6 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libsqlite3-dev libedit-dev
# - name: Setup Swift
# uses: fwal/setup-swift@v1.9.0
# with:
# swift-version: 5.5
- name: Checkout
uses: actions/checkout@v2.4.0
- name: Install SourceDocs
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -9,6 +9,11 @@
#### Bug Fixes
- None

## 2.0.1

- Updates required for Xcode 13.3 + Swift 5.6
- Bump dependencies

## 2.0.0

- Remove dependency on SwiftPM module for package dump decoding
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
TOOL_NAME = sourcedocs
VERSION = 2.0.0
VERSION = 2.0.1

PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(TOOL_NAME)
2 changes: 1 addition & 1 deletion Sources/SourceDocsCLI/main.swift
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ import Foundation
import ArgumentParser

struct SourceDocs: ParsableCommand {
static let version = "2.0.0"
static let version = "2.0.1"
static let defaultOutputPath = "Documentation/Reference"
static let defaultLinkEnding = ".md"
static let defaultLinkBeginning = ""
2 changes: 1 addition & 1 deletion Tests/SourceDocsCLITests/VersionCommandTests.swift
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ import ProcessRunner

class VersionCommandTests: XCTestCase {

let expectedVersion = "2.0.0"
let expectedVersion = "2.0.1"

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

0 comments on commit fb0e489

Please sign in to comment.