Skip to content

Commit 0d62144

Browse files
committed
Version 3.14.0
1 parent 263436d commit 0d62144

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
## Master
1515

16+
## 3.14.0
17+
1618
- Drop Swift 5.3 support [@417-72KI][] - [#524](https://github.com/danger/swift/pull/524)
1719
- Refine runner temporary path to better support concurrent pipelines [@squarefrog][] - [#530](https://github.com/danger/swift/pull/530)
1820

Package.swift

+1-1
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 devProducts: [Product] = isDevelop
1111
? [

Sources/Runner/main.swift

+1-1
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.13.0" // swiftlint:disable:this identifier_name
6+
let DangerVersion = "3.14.0" // 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)