Skip to content

Commit 7388ed4

Browse files
authored
Merge branch 'develop' into feature/colors-xml-argb
2 parents de5548b + 91d95c0 commit 7388ed4

File tree

155 files changed

+1178
-512
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+1178
-512
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ _None_
1010

1111
### New Features
1212

13+
* The built-in templates will now correctly handle Swift Package Manager resources, using `Bundle.module` if it's available. As before, you can override the used `Bundle` using the `bundle` or `lookupFunction` template parameters.
14+
[Arnaud Dorgans](https://github.com/arnauddorgans)
15+
[#763](https://github.com/SwiftGen/SwiftGen/pull/763)
16+
* Added `config generate-xcfilelist` subcommand to generate input and output `xcfilelist`s based on your configuration file. These files should then be used in an Xcode build step that executes `swiftgen config run`. Don't forget to regenerate the file lists after adding/removing resources in your project in a way that might impact them.
17+
[@CraigSiemens](https://github.com/CraigSiemens)
18+
[#441](https://github.com/SwiftGen/SwiftGen/issues/441)
1319
* Colors: the XML parser now accepts a `colorFormat` option, used to change the color format. The default equals `rgba`.
1420
[@kevinstier](https://github.com/kevinstier)
1521
[#562](https://github.com/SwiftGen/SwiftGen/issues/562)
@@ -23,7 +29,9 @@ _None_
2329

2430
### Internal Changes
2531

26-
_None_
32+
* Update Yams from `3.0.0` to `4.0.0`.
33+
[@hungrxyz](https://github.com/hungrxyz)
34+
[#772](https://github.com/SwiftGen/SwiftGen/issues/772)
2735

2836
## 6.3.0
2937

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ let package = Package(
1111
.package(url: "https://github.com/kylef/Commander.git", from: "0.9.0"),
1212
.package(url: "https://github.com/kylef/PathKit.git", from: "0.9.0"),
1313
.package(url: "https://github.com/kylef/Stencil.git", from: "0.13.0"),
14-
.package(url: "https://github.com/jpsim/Yams.git", from: "3.0.0"),
14+
.package(url: "https://github.com/jpsim/Yams.git", from: "4.0.0"),
1515
.package(url: "https://github.com/SwiftGen/StencilSwiftKit.git", from: "2.7.0"),
1616
.package(url: "https://github.com/tid-kijyun/Kanna.git", from: "5.2.2")
1717
],

Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ PODS:
77
- StencilSwiftKit (2.7.2):
88
- Stencil (~> 0.13.1)
99
- SwiftLint (0.39.2)
10-
- Yams (3.0.1)
10+
- Yams (4.0.0)
1111

1212
DEPENDENCIES:
1313
- Commander (~> 0.9)
1414
- Kanna (~> 5.2)
1515
- PathKit (~> 0.9)
1616
- StencilSwiftKit (~> 2.7)
1717
- SwiftLint (~> 0.39)
18-
- Yams (~> 3.0)
18+
- Yams (~> 4.0)
1919

2020
SPEC REPOS:
2121
trunk:
@@ -34,7 +34,7 @@ SPEC CHECKSUMS:
3434
Stencil: b5128a0a43ece9225db5cbd94d6569fe6fba609b
3535
StencilSwiftKit: 9ebd42556b6c7396440f286b6c9aca1549c963ff
3636
SwiftLint: 22ccbbe3b8008684be5955693bab135e0ed6a447
37-
Yams: 4199a97883e0369046e3fe882fcc95e559966370
37+
Yams: 9d49b85824751ee13d31e9ec6617c4dfb9a8c3cd
3838

3939
PODFILE CHECKSUM: f7eacff17036060bfc85488a45bd989d99e359f3
4040

Pods/.project_cache/installation_cache.yaml

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

Pods/Manifest.lock

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

Pods/Target Support Files/Yams/Yams-Info.plist

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Yams.xcodeproj/project.pbxproj

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

Pods/Yams/README.md

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

Pods/Yams/Sources/Yams/Constructor.swift

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

Pods/Yams/Sources/Yams/Decoder.swift

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

0 commit comments

Comments
 (0)