Skip to content

Commit c14ee6e

Browse files
authored
Update swiftly version to 1.0.1 in preparation for a patch release (#341)
1 parent 93f5380 commit c14ee6e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Sources/Swiftly/Init.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,11 @@ internal struct Init: SwiftlyCommand {
4242
if var config, !overwrite &&
4343
(
4444
config.version == SwiftlyVersion(major: 0, minor: 4, patch: 0, suffix: "dev") ||
45-
config.version == SwiftlyVersion(major: 0, minor: 4, patch: 0)
45+
config.version == SwiftlyVersion(major: 0, minor: 4, patch: 0) ||
46+
config.version == SwiftlyVersion(major: 1, minor: 0, patch: 0)
4647
)
4748
{
48-
// This is a simple upgrade from the 0.4.0-dev pre-release, or 0.4.0 release
49+
// This is a simple upgrade from a previous release that has a compatible configuration
4950

5051
// Move our executable over to the correct place
5152
try Swiftly.currentPlatform.installSwiftlyBin()

Sources/SwiftlyCore/SwiftlyCore.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Foundation
22

3-
public let version = SwiftlyVersion(major: 1, minor: 0, patch: 1, suffix: "dev")
3+
public let version = SwiftlyVersion(major: 1, minor: 0, patch: 1)
44

55
/// A separate home directory to use for testing purposes. This overrides swiftly's default
66
/// home directory location logic.

0 commit comments

Comments
 (0)