Skip to content

Commit

Permalink
Update to 2.40.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Apr 8, 2024
1 parent ecb9b56 commit 0301741
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@

## Next Version

## 2.40.0

### Added

- Added support for local Swift packages at the project root #1413 @hiltonc
- Added support for local Swift packages at the project root by specifying a "" group #1413 @hiltonc
- Added a custom `shell` to a scheme's pre and post actions #1430 @balazs-vimn

### Changed

- `.xcprivacy` files are now not added to any build phases by default #1464 @yonaskolb

## 2.39.1

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.39.1
VERSION = 2.40.0

PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ swift run xcodegen
Add the following to your Package.swift file's dependencies:

```swift
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.39.1"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.40.0"),
```

And then import wherever needed: `import XcodeGenKit`
Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodeGen/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import ProjectSpec
import XcodeGenCLI
import Version

let version = Version("2.39.1")
let version = Version("2.40.0")
let cli = XcodeGenCLI(version: version)
cli.execute()

0 comments on commit 0301741

Please sign in to comment.