Skip to content

Commit

Permalink
Version 7.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Piñera committed Oct 30, 2019
1 parent 6039b39 commit 765ba00
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Next

## 7.2.2

### Fixed
- Make test plans deserialise correctly https://github.com/tuist/XcodeProj/pull/496 by @adamkhazi

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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: "7.2.1")),
.package(url: "https://github.com/tuist/xcodeproj.git", .upToNextMajor(from: "7.2.2")),
],
targets: [
.target(
Expand All @@ -54,13 +54,13 @@ let package = Package(

```bash
# Cartfile
github "tuist/xcodeproj" ~> 7.2.1
github "tuist/xcodeproj" ~> 7.2.2
```

### CocoaPods

```ruby
pod 'xcodeproj', '~> 7.2.1'
pod 'xcodeproj', '~> 7.2.2'
```

### Scripting
Expand All @@ -72,7 +72,7 @@ git tag that represents the project’s version:
```swift
#!/usr/bin/swift sh
import Foundation
import XcodeProj // @tuist ~> 7.2.1
import XcodeProj // @tuist ~> 7.2.2
import PathKit

guard CommandLine.arguments.count == 3 else {
Expand Down
8 changes: 4 additions & 4 deletions Tapestries/Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"repositoryURL": "https://github.com/apple/swift-llbuild.git",
"state": {
"branch": "master",
"revision": "40bd204842fa23408f2c1cdbdef0750531a30fdd",
"revision": "973a3e299d39b89e6594babcd7cfab2a333a5782",
"version": null
}
},
Expand All @@ -69,7 +69,7 @@
"repositoryURL": "https://github.com/AckeeCZ/tapestry.git",
"state": {
"branch": "master",
"revision": "cc8c87f7b4565293bd95f5fa8b70d4cf007f6887",
"revision": "39d40860d990449c8b7ee23103a90274ebfc9674",
"version": null
}
},
Expand All @@ -78,7 +78,7 @@
"repositoryURL": "https://github.com/tuist/tuist.git",
"state": {
"branch": "master",
"revision": "b824e4bd087fc45d77e1bfcba9ab5e61be04321f",
"revision": "212f61684a49a1a0c3c8247be029c059bc844e6a",
"version": null
}
},
Expand All @@ -87,7 +87,7 @@
"repositoryURL": "https://github.com/tuist/XcodeProj",
"state": {
"branch": "master",
"revision": "7ffbfe55c0d1f032de0c4a79be33549c5de68de9",
"revision": "6039b39a045427b8baf04b917253de2057d8fced",
"version": null
}
}
Expand Down
2 changes: 1 addition & 1 deletion xcodeproj.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = "xcodeproj"
s.version = "7.2.1"
s.version = "7.2.2"
s.summary = "Read/Modify/Write your Xcode projects"
s.homepage = "https://github.com/tuist/xcodeproj"
s.social_media_url = 'https://twitter.com/tuistapp'
Expand Down

0 comments on commit 765ba00

Please sign in to comment.