Skip to content

Commit

Permalink
Version 8.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pepicrft committed Dec 16, 2021
1 parent fae1867 commit c75c3ac
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,11 @@

## Next

## 8.7.1

### Changed
- Make WorkspaceSettings initializer public [#658](https://github.com/tuist/XcodeProj/pull/658) by [@jakeatoms](https://github.com/jakeatoms)

## 8.7.0
### Added

Expand Down
8 changes: 4 additions & 4 deletions README.md
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.7.0")),
.package(url: "https://github.com/tuist/XcodeProj.git", .upToNextMajor(from: "8.7.1")),
],
targets: [
.target(
Expand All @@ -64,13 +64,13 @@ let package = Package(

```bash
# Cartfile
github "tuist/xcodeproj" ~> 8.7.0
github "tuist/xcodeproj" ~> 8.7.1
```

### CocoaPods

```ruby
pod 'xcodeproj', '~> 8.7.0
pod 'xcodeproj', '~> 8.7.1
```
### 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.7.0
import XcodeProj // @tuist ~> 8.7.1
import PathKit
guard CommandLine.arguments.count == 3 else {
Expand Down
2 changes: 1 addition & 1 deletion xcodeproj.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'xcodeproj'
s.version = '8.7.0'
s.version = '8.7.1'
s.summary = 'Read/Modify/Write your Xcode projects'
s.homepage = 'https://github.com/tuist/xcodeproj'
s.license = 'MIT'
Expand Down

0 comments on commit c75c3ac

Please sign in to comment.