Skip to content

Commit

Permalink
Update to 2.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Feb 14, 2024
1 parent 8b340b1 commit d1110b1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
# Change Log

## Next Version
### Added

- Support Artifact Bundle #1388 @freddi-kit
## 2.39.0

### Added

- Added support for String Catalogs (`.xcstrings`) #1421 @nicolasbosi95
- Support Artifact Bundle #1388 @freddi-kit
- Added support for `.xcstrings` String Catalogs #1421 @nicolasbosi95
- Added default `LD_RUNPATH_SEARCH_PATHS` for visionOS #1444 @Dahlgren
- Added `watchOS` as a supported cross platform destination #1438 @tatsuky

### Fixed

- Fixed custom local package groups not being created #1416 @JaapManenschijn
- Fixed spec validation error type #1439 @Lutzifer
- Create parent group for local package groups if it does not exist already #1417 @JaapManenschijn

### Internal

- Updated Rainbow version #1424 @nysander

## 2.38.0

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

0 comments on commit d1110b1

Please sign in to comment.