File tree Expand file tree Collapse file tree 4 files changed +16
-6
lines changed
Expand file tree Collapse file tree 4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 1+ # 0.4.1 (April 12, 2019)
2+
3+
4+ A bugfix release removing unused Xcode project scheme to improve build time
5+ for Carthage users.
6+
7+ ## Notable changes
8+
9+ * Remove unused scheme in Xcode project, [ @MaxDesiatov ] ( https://github.com/MaxDesiatov ) )
10+
111# 0.4.0 (April 8, 2019)
212
313This is a release with plenty of new features that allow you to parse many more
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ target 'YourApp' do
232232 use_frameworks!
233233
234234 # Pods for Test
235- pod ' XMLCoder' , ' ~> 0.4.0 '
235+ pod ' XMLCoder' , ' ~> 0.4.1 '
236236
237237end
238238```
@@ -261,7 +261,7 @@ $ brew install carthage
261261Inside of your ` Cartfile ` , add GitHub path to ` XMLCoder ` :
262262
263263``` ogdl
264- github "MaxDesiatov/XMLCoder" ~> 0.4.0
264+ github "MaxDesiatov/XMLCoder" ~> 0.4.1
265265```
266266
267267Then, run the following command to build the framework:
@@ -284,7 +284,7 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
284284
285285``` swift
286286dependencies: [
287- .package (url : " https://github.com/MaxDesiatov/XMLCoder.git" , from : " 0.4.0 " )
287+ .package (url : " https://github.com/MaxDesiatov/XMLCoder.git" , from : " 0.4.1 " )
288288]
289289```
290290
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "XMLCoder"
3- s . version = "0.4.0 "
3+ s . version = "0.4.1 "
44 s . summary = "XMLEncoder & XMLDecoder using the Codable protocol in Swift 4"
55 s . description = "XMLCoder allows Swift 4 Codable-conforming objects to be translated to and from XML"
66 s . homepage = "https://github.com/MaxDesiatov/XMLCoder"
Original file line number Diff line number Diff line change 716716 CLANG_ENABLE_OBJC_ARC = YES;
717717 COMBINE_HIDPI_IMAGES = YES;
718718 COPY_PHASE_STRIP = NO;
719- CURRENT_PROJECT_VERSION = 0.4.0 ;
719+ CURRENT_PROJECT_VERSION = 0.4.1 ;
720720 DEBUG_INFORMATION_FORMAT = dwarf;
721721 DYLIB_INSTALL_NAME_BASE = "@rpath";
722722 ENABLE_NS_ASSERTIONS = YES;
746746 CLANG_ENABLE_OBJC_ARC = YES;
747747 COMBINE_HIDPI_IMAGES = YES;
748748 COPY_PHASE_STRIP = YES;
749- CURRENT_PROJECT_VERSION = 0.4.0 ;
749+ CURRENT_PROJECT_VERSION = 0.4.1 ;
750750 DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
751751 DYLIB_INSTALL_NAME_BASE = "@rpath";
752752 GCC_OPTIMIZATION_LEVEL = s;
You can’t perform that action at this time.
0 commit comments