Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1df0bb3

Browse files
authored
Fix no such module 'DOT' by pinning GraphViz 0.2.0 (yonaskolb#1067)
* Revert "Fix no such module 'DOT' (yonaskolb#1065)" This reverts commit 69a1cd5. * pin GraphViz v0.2.0 * update CHANGELOG
1 parent 69a1cd5 commit 1df0bb3

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Next Version
44

55
#### Fixed
6-
- Fixed no such mocule `DOT` error [#1065](https://github.com/yonaskolb/XcodeGen/pull/1065) @yanamura
6+
- Fixed no such module `DOT` error [#1067](https://github.com/yonaskolb/XcodeGen/pull/1067) @yanamura
77

88
## 2.21.0
99

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let package = Package(
1919
.package(url: "https://github.com/tuist/XcodeProj.git", from: "7.18.0"),
2020
.package(url: "https://github.com/jakeheis/SwiftCLI.git", from: "6.0.0"),
2121
.package(url: "https://github.com/mxcl/Version", from: "2.0.0"),
22-
.package(url: "https://github.com/SwiftDocOrg/GraphViz.git", from: "0.4.0"),
22+
.package(url: "https://github.com/SwiftDocOrg/GraphViz.git", .exact("0.2.0")),
2323
],
2424
targets: [
2525
.target(name: "XcodeGen", dependencies: [

Sources/XcodeGenKit/GraphVizGenerator.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import DOT
12
import Foundation
23
import GraphViz
34
import ProjectSpec

0 commit comments

Comments
 (0)