[Release] Tuist 3.5.0
This commit is contained in:
parent
6b8629b8b9
commit
8dd9ae027f
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -2,6 +2,26 @@
|
|||
|
||||
Please, check out guidelines: https://keepachangelog.com/en/1.0.0/
|
||||
|
||||
## 3.5.0 - 2022-05-29
|
||||
|
||||
### Changed
|
||||
|
||||
- Avoid generated file name conflicts by prepending Tuist to them [#4478](https://github.com/tuist/tuist/pull/4478) by [@danyf90](https://github.com/danyf90)
|
||||
|
||||
### Added
|
||||
|
||||
- Feature: Add four new SettingsTransformers [#4427](https://github.com/tuist/tuist/pull/4427) by [@dogo](https://github.com/dogo)
|
||||
- Support for custom Project.Options for swift packages in Dependencies.swift [#4487](https://github.com/tuist/tuist/pull/4487) by [@shahzadmajeed](https://github.com/shahzadmajeed)
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix `selectedLauncherIdentifier` when `attachDebug` is false in `LaunchAction` and `TestAction` [#4458](https://github.com/tuist/tuist/pull/4458) by [@Andrea-Scuderi](https://github.com/Andrea-Scuderi)
|
||||
- Fix for importing `Firebase 9.x` though `SwiftPackageManger` in `Dependencies.swift` [#4456](https://github.com/tuist/tuist/pull/4456) by [@danyf90](https://github.com/danyf90)
|
||||
- Fixed rendering of generated `Info.plist` in Xcode [#4493](https://github.com/tuist/tuist/pull/4493) by [@mikchmie](https://github.com/mikchmie)
|
||||
- Avoid pruning schemes with test plans [#4495](https://github.com/tuist/tuist/pull/4495) by [@danyf90](https://github.com/danyf90)
|
||||
- Fix showing cloud errors [#4480](https://github.com/tuist/tuist/pull/4480) by [@fortmarek](https://github.com/fortmarek)
|
||||
- Generate Package.swift with correct format when custom swift version is specified [#4503](https://github.com/tuist/tuist/pull/4503) by [@danyf90](https://github.com/danyf90)
|
||||
|
||||
## 3.4.0 - 2022-05-14
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -9,7 +9,7 @@ public enum Constants {
|
|||
public static let githubSlug = "tuist/tuist"
|
||||
public static let communityURL = "https://community.tuist.io"
|
||||
public static let backboneURL = URL(string: "https://backbone.tuist.io")!
|
||||
public static let version = "3.4.0"
|
||||
public static let version = "3.5.0"
|
||||
public static let bundleName: String = "tuist.zip"
|
||||
public static let envBundleName: String = "tuistenv.zip"
|
||||
public static let trueValues: [String] = ["1", "true", "TRUE", "yes", "YES"]
|
||||
|
|
Loading…
Reference in New Issue