Skip to content

Commit

Permalink
Version 8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Piñera committed Sep 13, 2021
1 parent 5c9d987 commit 8e83191
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Next

### 8.2.0 - Bubbles
### Added

- Support obtaining the full path of a file element by passing the source root as a string [#624](https://github.com/tuist/XcodeProj/pull/624) by [@ileitch](https://github.com/ileitch).
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.1.0")),
.package(url: "https://github.com/tuist/XcodeProj.git", .upToNextMajor(from: "8.2.0")),
],
targets: [
.target(
Expand All @@ -64,13 +64,13 @@ let package = Package(

```bash
# Cartfile
github "tuist/xcodeproj" ~> 8.1.0
github "tuist/xcodeproj" ~> 8.2.0
```

### CocoaPods

```ruby
pod 'xcodeproj', '~> 8.1.0
pod 'xcodeproj', '~> 8.2.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.1.0
import XcodeProj // @tuist ~> 8.2.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.1.0'
s.version = '8.2.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 8e83191

Please sign in to comment.