Skip to content

Commit 5c6bc0f

Browse files
author
github-actions
committed
[Release] Tuist CLI 4.153.1 Tuist Server server@1.104.0 Tuist Cache cache@0.22.0 Gradle Plugin gradle@0.2.2
1 parent 72e5a64 commit 5c6bc0f

6 files changed

Lines changed: 28 additions & 8 deletions

File tree

android/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencyResolutionManagement {
2323
rootProject.name = "Tuist"
2424

2525
plugins {
26-
id("dev.tuist") version "0.2.1"
26+
id("dev.tuist") version "0.2.2"
2727
}
2828

2929
buildCache {

cli/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,27 @@ All notable changes to this project will be documented in this file.
55

66
### ⛰️ Features
77

8+
* make tuist inspect bundle available on Linux by [@fortmarek](https://github.com/fortmarek) in [#9644](https://github.com/tuist/tuist/pull/9644)
9+
* prune old binary cache entries on startup by [@pepicrft](https://github.com/pepicrft)
10+
* vendor XcodeGraph into tuist and reconcile dependency graphs by [@pepicrft](https://github.com/pepicrft) in [#9616](https://github.com/tuist/tuist/pull/9616)
11+
* add "Ask on Launch" executable option for scheme actions by [@FelixLisczyk](https://github.com/FelixLisczyk) in [#9373](https://github.com/tuist/tuist/pull/9373)
812
* add warningsAsErrors generation option by [@fortmarek](https://github.com/fortmarek) in [#9574](https://github.com/tuist/tuist/pull/9574)
13+
### 🐛 Bug Fixes
14+
15+
* Fix case-insensitive prioritize local packages over registry by [@fdiaz](https://github.com/fdiaz) in [#9673](https://github.com/tuist/tuist/pull/9673)
16+
* add xcassets and xcstrings to sources build phase for static targets by [@pepicrft](https://github.com/pepicrft) in [#9666](https://github.com/tuist/tuist/pull/9666)
17+
* update Command package to 0.14.0 by [@fortmarek](https://github.com/fortmarek) in [#9657](https://github.com/tuist/tuist/pull/9657)
18+
* make CacheLocalStorage.clean public by [@fortmarek](https://github.com/fortmarek) in [#9647](https://github.com/tuist/tuist/pull/9647)
19+
* bump FileSystem to 0.15.0 for setFileTimes support by [@fortmarek](https://github.com/fortmarek) in [#9646](https://github.com/tuist/tuist/pull/9646)
20+
* sort Set iterations in graph mappers for deterministic cache hashing by [@fortmarek](https://github.com/fortmarek) in [#9629](https://github.com/tuist/tuist/pull/9629)
21+
* limit concurrency of buildable folder resolution to avoid FD exhaustion by [@fortmarek](https://github.com/fortmarek) in [#9626](https://github.com/tuist/tuist/pull/9626)
22+
* add validation folder exists for BuildableFolder by [@ivan-gaydamakin](https://github.com/ivan-gaydamakin) in [#9609](https://github.com/tuist/tuist/pull/9609)
23+
* prune static xcframework deps from dynamic xcframeworks for hostless unit tests by [@pepicrft](https://github.com/pepicrft) in [#9602](https://github.com/tuist/tuist/pull/9602)
24+
* upload APK files directly instead of wrapping in zip by [@fortmarek](https://github.com/fortmarek) in [#9581](https://github.com/tuist/tuist/pull/9581)
25+
* populate explicitFolders for excluded directories in buildable folders by [@fortmarek](https://github.com/fortmarek) in [#9578](https://github.com/tuist/tuist/pull/9578)
26+
### 🚜 Refactor
27+
28+
* migrate acceptance tests to Swift Testing by [@pepicrft](https://github.com/pepicrft) in [#9352](https://github.com/tuist/tuist/pull/9352)
929

1030
**Full Changelog**: https://github.com/tuist/tuist/compare/4.151.1...4.152.0
1131

cli/Sources/TuistConstants/Constants.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Foundation
22

33
public enum Constants {
4-
@TaskLocal public static var version: String! = "4.152.0"
4+
@TaskLocal public static var version: String! = "4.153.1"
55
public static let versionFileName = ".tuist-version"
66
public static let binFolderName = ".tuist-bin"
77
public static let binName = "tuist"
@@ -28,7 +28,7 @@ public enum Constants {
2828

2929
public static let tuistManifestFileName = "Tuist.swift"
3030
public static let tuistTomlFileName = "tuist.toml"
31-
public static let gradlePluginVersion = "0.2.1"
31+
public static let gradlePluginVersion = "0.2.2"
3232

3333
/// The cache version.
3434
/// This should change only when it changes the logic to map a `XcodeGraph.Target` to a cached build artifact.

gradle/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Changelog
22

33
All notable changes to this project will be documented in this file.
4-
## What's Changed in gradle@0.2.1<!-- RELEASE NOTES START -->
4+
## What's Changed in gradle@0.2.2<!-- RELEASE NOTES START -->
55

66
### 🐛 Bug Fixes
77

8-
* use project name as module for root project tests by [@fortmarek](https://github.com/fortmarek) in [#9520](https://github.com/tuist/tuist/pull/9520)
8+
* resolve git branch reported as HEAD on CI by [@fortmarek](https://github.com/fortmarek) in [#9665](https://github.com/tuist/tuist/pull/9665)
99

10-
**Full Changelog**: https://github.com/tuist/tuist/compare/gradle@0.2.0...gradle@0.2.1
10+
**Full Changelog**: https://github.com/tuist/tuist/compare/gradle@0.2.1...gradle@0.2.2
1111

1212
<!-- generated by git-cliff -->

gradle/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
rootProject.name = "tuist-gradle-plugin"
22

33
plugins {
4-
id("dev.tuist") version "0.2.1"
4+
id("dev.tuist") version "0.2.2"
55
}
66

77
buildCache {

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tools]
2-
tuist = "4.152.0"
2+
tuist = "4.153.1"
33
swiftlint = "0.59.1"
44
"elixir" = "1.19.1"
55
"erlang" = "28.1"

0 commit comments

Comments
 (0)