Skip to content

Commit 7e8470a

Browse files
committed
Version 3.21.2
1 parent d064695 commit 7e8470a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
## Master
1515

16+
## 3.21.2
17+
1618
- Fix Runner's path resolution to enable `--cwd` with relative paths [@Fab1n](https://github.com/Fab1n) - [#650](https://github.com/danger/swift/pull/650)
1719
- Fixed issue with string force unwrap [@Davarg][] - [#647](https://github.com/danger/swift/pull/647)
1820
- Fix detecting MAJOR_VERSION in linux [@417-72KI][] - [#646](https://github.com/danger/swift/pull/646)

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
// Version number can be found in Source/Danger/Danger.swift
66

77
// switch to false when release
8-
let isDevelop = true
8+
let isDevelop = false
99

1010
let swiftLint: Package.Dependency = {
1111
#if compiler(>=5.9)

Sources/Runner/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Logger
33
import RunnerLib
44

55
/// Version for showing in verbose mode
6-
let DangerVersion = "3.21.1" // swiftlint:disable:this identifier_name
6+
let DangerVersion = "3.21.2" // swiftlint:disable:this identifier_name
77
let MinimumDangerJSVersion = "6.1.6" // swiftlint:disable:this identifier_name
88

99
private func runCommand(_ command: DangerCommand, logger: Logger) throws {

0 commit comments

Comments
 (0)