Skip to content

Commit

Permalink
Version 8.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kwridan committed Jul 14, 2022
1 parent 439e89e commit b6de1bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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.7.1")),
.package(url: "https://github.com/tuist/XcodeProj.git", .upToNextMajor(from: "8.8.0")),
],
targets: [
.target(
Expand All @@ -64,13 +64,13 @@ let package = Package(

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

### CocoaPods

```ruby
pod 'xcodeproj', '~> 8.7.1
pod 'xcodeproj', '~> 8.8.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.7.1
import XcodeProj // @tuist ~> 8.8.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.7.1'
s.version = '8.8.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 b6de1bf

Please sign in to comment.