Skip to content

Commit

Permalink
Version 0.41.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SDGGiesbrecht authored Oct 21, 2022
1 parent 38dd72f commit 24d436d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Workspace provides command line tools.
They can be installed any way Swift packages can be installed. The most direct method is pasting the following into a terminal, which will either install or update them:

```shell
curl -sL https://gist.github.com/SDGGiesbrecht/4d76ad2f2b9c7bf9072ca1da9815d7e2/raw/update.sh | bash -s Workspace "https://github.com/SDGGiesbrecht/Workspace" 0.41.0 "workspace help" workspace arbeitsbereich
curl -sL https://gist.github.com/SDGGiesbrecht/4d76ad2f2b9c7bf9072ca1da9815d7e2/raw/update.sh | bash -s Workspace "https://github.com/SDGGiesbrecht/Workspace" 0.41.1 "workspace help" workspace arbeitsbereich
```

## Importing
Expand All @@ -134,7 +134,7 @@ let package = Package(
.package(
name: "Workspace",
url: "https://github.com/SDGGiesbrecht/Workspace",
.upToNextMinor(from: Version(0, 41, 0))
.upToNextMinor(from: Version(0, 41, 1))
),
],
targets: [
Expand Down
4 changes: 2 additions & 2 deletions Workspace.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import WorkspaceConfiguration

public enum Metadata {

public static let latestStableVersion = Version(0, 41, 0)
public static let latestStableVersion = Version(0, 41, 1)
// Set this to latestStableVersion for release commits, nil the rest of the time.
public static let thisVersion: Version? = nil
public static let thisVersion: Version? = latestStableVersion

public static let packageURL = URL(string: "https://github.com/SDGGiesbrecht/Workspace")!
public static let issuesURL = packageURL.appendingPathComponent("issues")
Expand Down

0 comments on commit 24d436d

Please sign in to comment.