Skip to content

Commit 0b18c3e

Browse files
author
Pedro Piñera
committed
Version 8.0.0
1 parent 5115e42 commit 0b18c3e

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Next
44

5+
## 8.0.0 - Amor
56
### Fixed
67

78
- Adding group set incorrect parent in case of complex path [#614](https://github.com/tuist/XcodeProj/pull/614) by [@avdyushin](https://github.com/avdyushin)

README.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,18 @@ XcodeProj is a library written in Swift for parsing and working with Xcode proje
1616

1717
---
1818

19-
- [Projects Using XcodeProj](#projects-using-xcodeproj)
20-
- [Installation](#installation)
21-
- [Contributing](#contributing)
22-
- [License](#license)
19+
- [XcodeProj](#xcodeproj)
20+
- [Projects Using XcodeProj](#projects-using-xcodeproj)
21+
- [Installation](#installation)
22+
- [Swift Package Manager](#swift-package-manager)
23+
- [Carthage](#carthage)
24+
- [CocoaPods](#cocoapods)
25+
- [Scripting](#scripting)
26+
- [Documentation 📝](#documentation-)
27+
- [References 📚](#references-)
28+
- [Contributing](#contributing)
29+
- [License](#license)
30+
- [Contributors ✨](#contributors-)
2331

2432
## Projects Using XcodeProj
2533

@@ -43,7 +51,7 @@ Add the dependency in your `Package.swift` file:
4351
let package = Package(
4452
name: "myproject",
4553
dependencies: [
46-
.package(url: "https://github.com/tuist/xcodeproj.git", .upToNextMajor(from: "7.23.0"))
54+
.package(url: "https://github.com/tuist/xcodeproj.git", .upToNextMajor(from: "8.0.0"))
4755
],
4856
targets: [
4957
.target(
@@ -59,13 +67,13 @@ let package = Package(
5967

6068
```bash
6169
# Cartfile
62-
github "tuist/xcodeproj" ~> 7.23.0
70+
github "tuist/xcodeproj" ~> 8.0.0
6371
```
6472

6573
### CocoaPods
6674

6775
```ruby
68-
pod 'xcodeproj', '~> 7.23.0
76+
pod 'xcodeproj', '~> 8.0.0
6977
```
7078
7179
### Scripting
@@ -77,7 +85,7 @@ git tag that represents the project’s version:
7785
```swift
7886
#!/usr/bin/swift sh
7987
import Foundation
80-
import XcodeProj // @tuist ~> 7.23.0
88+
import XcodeProj // @tuist ~> 8.0.0
8189
import PathKit
8290
8391
guard CommandLine.arguments.count == 3 else {

xcodeproj.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'xcodeproj'
3-
s.version = '7.23.0'
3+
s.version = '8.0.0'
44
s.summary = 'Read/Modify/Write your Xcode projects'
55
s.homepage = 'https://github.com/tuist/xcodeproj'
66
s.license = 'MIT'

0 commit comments

Comments
 (0)