From 1330d6d6fa9b7932eca8c688f98d298443e78821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Pi=C3=B1era?= Date: Thu, 14 Oct 2021 17:15:41 +0200 Subject: [PATCH] Version 8.4.0 --- CHANGELOG.md | 2 +- README.md | 8 ++++---- xcodeproj.podspec | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf60ddd3c..b91650011 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ 🚀 Check out the guidelines [here](https://tuist.io/docs/contribution/changelog-guidelines/) ## Next - +### 8.4.0 ### Added - Support customized DerrivedData path in `WorkspaceSettings` [#650](https://github.com/tuist/XcodeProj/pull/650) by [@freddi-kit](https://github.com/freddi-kit). diff --git a/README.md b/README.md index 8f88f78fd..489c9231d 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Add the dependency in your `Package.swift` file: let package = Package( name: "myproject", dependencies: [ - .package(url: "https://github.com/tuist/XcodeProj.git", .upToNextMajor(from: "8.3.1")), + .package(url: "https://github.com/tuist/XcodeProj.git", .upToNextMajor(from: "8.4.0")), ], targets: [ .target( @@ -64,13 +64,13 @@ let package = Package( ```bash # Cartfile -github "tuist/xcodeproj" ~> 8.3.1 +github "tuist/xcodeproj" ~> 8.4.0 ``` ### CocoaPods ```ruby -pod 'xcodeproj', '~> 8.3.1 +pod 'xcodeproj', '~> 8.4.0 ``` ### Scripting @@ -82,7 +82,7 @@ git tag that represents the project’s version: ```swift #!/usr/bin/swift sh import Foundation -import XcodeProj // @tuist ~> 8.3.1 +import XcodeProj // @tuist ~> 8.4.0 import PathKit guard CommandLine.arguments.count == 3 else { diff --git a/xcodeproj.podspec b/xcodeproj.podspec index b479489e4..ae025273f 100644 --- a/xcodeproj.podspec +++ b/xcodeproj.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'xcodeproj' - s.version = '8.3.1' + s.version = '8.4.0' s.summary = 'Read/Modify/Write your Xcode projects' s.homepage = 'https://github.com/tuist/xcodeproj' s.license = 'MIT'