mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
Update to 2.44.1
This commit is contained in:
+7
-1
@@ -2,6 +2,13 @@
|
||||
|
||||
## Next Version
|
||||
|
||||
## 2.44.1
|
||||
|
||||
### Fixed
|
||||
- Set the correct object version of 77 for Xcode 16 projects @jakobfelsatdm #1563
|
||||
- Support major.minor SPM package versions which would otherwise fail to decode to a string in yaml specs #1546 @RomanPodymov
|
||||
- Fix regression for `parallelizable` in scheme. It now resolves to "Enabled" and not "Swift Testing Only" #1565 @CraigSiemens
|
||||
|
||||
## 2.44.0
|
||||
|
||||
### Added
|
||||
@@ -35,7 +42,6 @@
|
||||
- **Breaking**: `fileGroups` are now relative paths when in included files, like other paths #1534 @shnhrrsn
|
||||
- **Breaking**: Local package paths are now relative paths when in included files, like other paths #1498 @juri
|
||||
- Optional groups are no longer skipped when missing and generating projects from a different directory #1529 @SSheldon
|
||||
- Handle major.minor SPM packages versions #1546 @RomanPodymov
|
||||
|
||||
### Internal
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
TOOL_NAME = XcodeGen
|
||||
export EXECUTABLE_NAME = xcodegen
|
||||
VERSION = 2.44.0
|
||||
VERSION = 2.44.1
|
||||
|
||||
PREFIX = /usr/local
|
||||
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
|
||||
|
||||
@@ -112,7 +112,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.44.0"),
|
||||
.package(url: "https://github.com/yonaskolb/XcodeGen.git", from: "2.44.1"),
|
||||
```
|
||||
|
||||
And then import wherever needed: `import XcodeGenKit`
|
||||
|
||||
@@ -3,6 +3,6 @@ import ProjectSpec
|
||||
import XcodeGenCLI
|
||||
import Version
|
||||
|
||||
let version = Version("2.44.0")
|
||||
let version = Version("2.44.1")
|
||||
let cli = XcodeGenCLI(version: version)
|
||||
cli.execute()
|
||||
|
||||
Reference in New Issue
Block a user