Skip to content

Commit

Permalink
Version 8.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Piñera committed Oct 14, 2021
1 parent 4978785 commit 1330d6d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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
Expand All @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion xcodeproj.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit 1330d6d

Please sign in to comment.