mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
Update to 2.45.2
This commit is contained in:
@@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
## Next Version
|
## Next Version
|
||||||
|
|
||||||
|
## 2.45.2
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Validate empty source paths to prevent project root inclusion #1601 @yonaskolb
|
||||||
- Fix missing productRefGroup in generated projects #1591 @ruslic19
|
- Fix missing productRefGroup in generated projects #1591 @ruslic19
|
||||||
|
|
||||||
## 2.45.1
|
## 2.45.1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
TOOL_NAME = XcodeGen
|
TOOL_NAME = XcodeGen
|
||||||
export EXECUTABLE_NAME = xcodegen
|
export EXECUTABLE_NAME = xcodegen
|
||||||
VERSION = 2.45.1
|
VERSION = 2.45.2
|
||||||
|
|
||||||
PREFIX = /usr/local
|
PREFIX = /usr/local
|
||||||
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
|
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ swift run xcodegen
|
|||||||
Add the following to your Package.swift file's dependencies:
|
Add the following to your Package.swift file's dependencies:
|
||||||
|
|
||||||
```swift
|
```swift
|
||||||
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.45.1"),
|
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.45.2"),
|
||||||
```
|
```
|
||||||
|
|
||||||
And then import wherever needed: `import XcodeGenKit`
|
And then import wherever needed: `import XcodeGenKit`
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
# The release process for XcodeGen
|
# The release process for XcodeGen
|
||||||
|
|
||||||
1. Make sure `CHANGELOG.md` is up to date:
|
1. Make sure `CHANGELOG.md` is up to date:
|
||||||
- All relevant entries have been added with the PR link and author
|
- All merged PRs since the last release have been added with the PR link and author (check `git log <last-tag>..HEAD`)
|
||||||
- The new version number is added at the top after `Master`
|
- The new version number is added at the top after `Master`
|
||||||
1. Update the version at the top of `Makefile`
|
1. Update the version at the top of `Makefile`
|
||||||
1. Run `make release`
|
1. Run `make release`
|
||||||
|
|||||||
@@ -3,6 +3,6 @@ import ProjectSpec
|
|||||||
import XcodeGenCLI
|
import XcodeGenCLI
|
||||||
import Version
|
import Version
|
||||||
|
|
||||||
let version = Version("2.45.1")
|
let version = Version("2.45.2")
|
||||||
let cli = XcodeGenCLI(version: version)
|
let cli = XcodeGenCLI(version: version)
|
||||||
cli.execute()
|
cli.execute()
|
||||||
|
|||||||
Reference in New Issue
Block a user