You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+18
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,24 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
17
17
### Security
18
18
- None.
19
19
20
+
## [0.6.0] - 2019-04-19
21
+
### Added
22
+
- Correctly recognizes App Extensions and doesn't add build phases for them. Fixes [#25](https://github.com/JamitLabs/Accio/issues/25).
23
+
- Points to detailed information about conflicting name issues with SwiftPM. Fixes [#26](https://github.com/JamitLabs/Accio/issues/26).
24
+
- The `init` command now properly detects test targets and lists them as such in the created manifest file. Fixes [#23](https://github.com/JamitLabs/Accio/issues/23).
25
+
### Changed
26
+
- Improves reading of supported deployment targets.
27
+
- Improves init command by treating empty manifest files like non-existing ones. Fixes [#24](https://github.com/JamitLabs/Accio/issues/24).
28
+
### Deprecated
29
+
- None.
30
+
### Removed
31
+
- None.
32
+
### Fixed
33
+
- Fixes an issue where Accio commands where failing when Git resets failed.
34
+
- Fixes an issue where Accio didn't reset changed files untracked by Git.
35
+
### Security
36
+
- None.
37
+
20
38
## [0.5.6] - 2019-04-09
21
39
### Added
22
40
- Adds support for automatically finding schemes named like 'MBProgressHUD Framework tvOS'.
print("No dependencies specified for target '\(appTarget.targetName)'. Please add at least one dependency scheme to the 'dependencies' array of the target in Package.swift.", level:.warning)
Copy file name to clipboardExpand all lines: Sources/AccioKit/Services/XcodeProjectGeneratorService.swift
+7-18
Original file line number
Diff line number
Diff line change
@@ -74,33 +74,22 @@ final class XcodeProjectGeneratorService {
74
74
}
75
75
}
76
76
77
-
/// Swift 4.2 doesn't support the `platform` parameter in the Package manifest, thus read it from a comment with this method.
77
+
/// Swift 4.2 doesn't support the `platform` parameter in the Package manifest, thus read it from a comment with this method. Also ensure Swift 5 support.
print("Did not recognize platform with name '\(match.captures[0]!)' in '\(platformSpecifier)' – expected one of \(Platform.allCases.map{ $0.rawValue })", level:.warning)
0 commit comments