Skip to content

Commit

Permalink
Version 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Piñera committed Jun 17, 2021
1 parent 5115e42 commit 0b18c3e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 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.0.0 - Amor
### Fixed

- Adding group set incorrect parent in case of complex path [#614](https://github.com/tuist/XcodeProj/pull/614) by [@avdyushin](https://github.com/avdyushin)
Expand Down
24 changes: 16 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,18 @@ XcodeProj is a library written in Swift for parsing and working with Xcode proje

---

- [Projects Using XcodeProj](#projects-using-xcodeproj)
- [Installation](#installation)
- [Contributing](#contributing)
- [License](#license)
- [XcodeProj](#xcodeproj)
- [Projects Using XcodeProj](#projects-using-xcodeproj)
- [Installation](#installation)
- [Swift Package Manager](#swift-package-manager)
- [Carthage](#carthage)
- [CocoaPods](#cocoapods)
- [Scripting](#scripting)
- [Documentation 📝](#documentation-)
- [References 📚](#references-)
- [Contributing](#contributing)
- [License](#license)
- [Contributors ✨](#contributors-)

## Projects Using XcodeProj

Expand All @@ -43,7 +51,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.23.0"))
.package(url: "https://github.com/tuist/xcodeproj.git", .upToNextMajor(from: "8.0.0"))
],
targets: [
.target(
Expand All @@ -59,13 +67,13 @@ let package = Package(

```bash
# Cartfile
github "tuist/xcodeproj" ~> 7.23.0
github "tuist/xcodeproj" ~> 8.0.0
```

### CocoaPods

```ruby
pod 'xcodeproj', '~> 7.23.0
pod 'xcodeproj', '~> 8.0.0
```
### Scripting
Expand All @@ -77,7 +85,7 @@ git tag that represents the project’s version:
```swift
#!/usr/bin/swift sh
import Foundation
import XcodeProj // @tuist ~> 7.23.0
import XcodeProj // @tuist ~> 8.0.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 = '7.23.0'
s.version = '8.0.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 0b18c3e

Please sign in to comment.