Skip to content

Commit

Permalink
Update to 2.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Aug 12, 2023
1 parent 7ea3200 commit 145be30
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Next Version

## 2.36.0

### Added

- Added `scheme.enableGPUValidationMode` #1294 @LouisLWang
Expand All @@ -12,8 +14,8 @@
### Changed

- The project object version has been updated for Xcode 14.3 #1368 @leonardorock
- Updated recommended settings for Xcode 14.3 #1385 @yonaskolb
- Dropped support for Xcode 12 and 13, due to XcodeProj update #1384 @yonaskolb
- Updated recommended settings for Xcode 14 #1385 @yonaskolb

### Fixed

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.35.0
VERSION = 2.36.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.35.0"),
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.36.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.35.0")
let version = Version("2.36.0")
let cli = XcodeGenCLI(version: version)
cli.execute()

0 comments on commit 145be30

Please sign in to comment.