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
@@ -81,116 +58,51 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
81
58
### Changed
82
59
- Improves reading of supported deployment targets.
83
60
- Improves init command by treating empty manifest files like non-existing ones. Fixes [#24](https://github.com/JamitLabs/Accio/issues/24).
84
-
### Deprecated
85
-
- None.
86
-
### Removed
87
-
- None.
88
61
### Fixed
89
62
- Fixes an issue where Accio commands where failing when Git resets failed.
90
63
- Fixes an issue where Accio didn't reset changed files untracked by Git.
91
-
### Security
92
-
- None.
93
64
94
65
## [0.5.6] - 2019-04-09
95
66
### Added
96
67
- Adds support for automatically finding schemes named like 'MBProgressHUD Framework tvOS'.
97
68
### Changed
98
69
- Some improvements that make the output information on the console more precise.
99
-
### Deprecated
100
-
- None.
101
-
### Removed
102
-
- None.
103
70
### Fixed
104
71
- Fixes the broken cleanup command of temporary frameworks after completing install.
105
72
- Fixes an issue with multiple targets linking a single framework with schemes named after their platforms.
106
73
- Fixes an issue with different platform specifiers used in scheme names.
107
-
### Security
108
-
- None.
109
74
110
75
## [0.5.5] - 2019-04-05
111
-
### Added
112
-
- None.
113
76
### Changed
114
77
- The framework copy build phase now optimizes "dirty" build timing by specifying the output files. [#13](https://github.com/JamitLabs/Accio/issues/13)
115
-
### Deprecated
116
-
- None.
117
-
### Removed
118
-
- None.
119
78
### Fixed
120
79
- Fixes an issue where broken previous install attempt leftovers cause errors on subsequent installs. [#12](https://github.com/JamitLabs/Accio/issues/12)
121
-
### Security
122
-
- None.
123
80
124
81
## [0.5.4] - 2019-04-03
125
-
### Added
126
-
- None.
127
-
### Changed
128
-
- None.
129
-
### Deprecated
130
-
- None.
131
-
### Removed
132
-
- None.
133
82
### Fixed
134
83
- Fix symbolic linking of .framework and .dSYM files.
135
-
### Security
136
-
- None.
137
84
138
85
## [0.5.3] - 2019-04-01
139
-
### Added
140
-
- None.
141
-
### Changed
142
-
- None.
143
-
### Deprecated
144
-
- None.
145
-
### Removed
146
-
- None.
147
86
### Fixed
148
87
- Fixes an issue where recursive copies of non symbolic links could cause build errors.
149
-
### Security
150
-
- None.
151
88
152
89
## [0.5.2] - 2019-04-01
153
-
### Added
154
-
- None.
155
-
### Changed
156
-
- None.
157
-
### Deprecated
158
-
- None.
159
-
### Removed
160
-
- None.
161
90
### Fixed
162
91
- Keep symlinks in cached ZIP files for macOS support.
163
-
### Security
164
-
- None.
165
92
166
93
## [0.5.1] - 2019-03-31
167
-
### Added
168
-
- None.
169
94
### Changed
170
95
- Check if shared cache path is available, else add new build products to local cache.
171
-
### Deprecated
172
-
- None.
173
-
### Removed
174
-
- None.
175
96
### Fixed
176
97
- Fixed an issue with copying unzipped cache build products back to project.
177
-
### Security
178
-
- None.
179
-
180
98
181
99
## [0.5.0] - 2019-03-30
182
100
### Added
183
101
- Demo project for integration testing with popular Swift frameworks.
184
102
### Changed
185
103
- Compress cached build products in a .zip file. Old style cached build products can be deleted.
186
-
### Deprecated
187
-
- None.
188
-
### Removed
189
-
- None.
190
104
### Fixed
191
105
- Multiple issues with paths, names, symbolic links & more.
192
-
### Security
193
-
- None.
194
106
195
107
## [0.4.0] - 2019-03-29
196
108
### Added
@@ -204,30 +116,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
204
116
- Unlink frameworks that are no longer included.
205
117
- Don't save build products to local cache if shared cache is available.
206
118
- Cleanup Accio run script phase when target gets removed.
207
-
### Deprecated
208
-
- None.
209
-
### Removed
210
-
- None.
211
119
### Fixed
212
120
- Fix typo in local cache logging.
213
121
- Fix missing use of `Constants.xcodeDependenciesGroup` & `Constants.dependenciesPath`.
214
-
### Security
215
-
- None.
216
122
217
123
## [0.3.0] - 2019-03-26
218
-
### Added
219
-
- None.
220
124
### Changed
221
125
- Add support for Swift 5 and Xcode 10.2.
222
126
- Separate cached frameworks by Swift tools version.
@@ -88,6 +88,7 @@ Alternatively, read the following expandable summary:
88
88
<summary>
89
89
Summary of the Motivation & Advantages
90
90
</summary>
91
+
91
92
For developers on Apple platforms there are already well established dependency managers, namely [CocoaPods](https://github.com/CocoaPods/CocoaPods) & [Carthage](https://github.com/Carthage/Carthage). If you like how CocoaPods deals with things, you probably won't ever need to use Accio. It doesn't do anything that CocoaPods doesn't.
92
93
93
94
But if you are like the many developers who prefer to use Carthage because it's written in Swift (not Ruby) and it doesn't create an Xcode workspace but is rather unintrusive, you might find that Accio solves some of the problems you might have come across with Carthage.
0 commit comments