File tree Expand file tree Collapse file tree 4 files changed +18
-7
lines changed
Expand file tree Collapse file tree 4 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 1+ # 0.6.0 (June 17, 2019)
2+
3+ An improvement release that introduces ` convertFromKebabCase ` and
4+ ` convertToKebabCase ` key decoding strategies. Thanks to [ Andrés Cecilia
5+ Luque] ( https://github.com/acecilia ) for the contribution!
6+
7+ ## Merged pull requests
8+
9+ - Add support for kebab-case KeyDecodingStrategy
10+ [ \# 105] ( https://github.com/MaxDesiatov/XMLCoder/pull/105 )
11+ ([ acecilia] ( https://github.com/acecilia ) )
12+
113# 0.5.1 (May 2, 2019)
214
315Bugfix release that restores decoding of empty sequences, which became broken in
Original file line number Diff line number Diff line change @@ -240,8 +240,7 @@ target 'YourApp' do
240240 use_frameworks!
241241
242242 # Pods for Test
243- pod ' XMLCoder' , ' ~> 0.5.1'
244-
243+ pod ' XMLCoder' , ' ~> 0.6.0'
245244end
246245```
247246
@@ -269,7 +268,7 @@ $ brew install carthage
269268Inside of your ` Cartfile ` , add GitHub path to ` XMLCoder ` :
270269
271270``` ogdl
272- github "MaxDesiatov/XMLCoder" ~> 0.5.1
271+ github "MaxDesiatov/XMLCoder" ~> 0.6.0
273272```
274273
275274Then, run the following command to build the framework:
@@ -292,7 +291,7 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
292291
293292``` swift
294293dependencies: [
295- .package (url : " https://github.com/MaxDesiatov/XMLCoder.git" , from : " 0.5.1 " )
294+ .package (url : " https://github.com/MaxDesiatov/XMLCoder.git" , from : " 0.6.0 " )
296295]
297296```
298297
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "XMLCoder"
3- s . version = "0.5.1 "
3+ s . version = "0.6.0 "
44 s . summary = "XMLEncoder & XMLDecoder using the Codable protocol in Swift"
55 s . description = "XMLCoder allows Swift 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 737737 CLANG_ENABLE_OBJC_ARC = YES;
738738 COMBINE_HIDPI_IMAGES = YES;
739739 COPY_PHASE_STRIP = NO;
740- CURRENT_PROJECT_VERSION = 0.5.1 ;
740+ CURRENT_PROJECT_VERSION = 0.6.0 ;
741741 DEBUG_INFORMATION_FORMAT = dwarf;
742742 DYLIB_INSTALL_NAME_BASE = "@rpath";
743743 ENABLE_NS_ASSERTIONS = YES;
767767 CLANG_ENABLE_OBJC_ARC = YES;
768768 COMBINE_HIDPI_IMAGES = YES;
769769 COPY_PHASE_STRIP = YES;
770- CURRENT_PROJECT_VERSION = 0.5.1 ;
770+ CURRENT_PROJECT_VERSION = 0.6.0 ;
771771 DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
772772 DYLIB_INSTALL_NAME_BASE = "@rpath";
773773 GCC_OPTIMIZATION_LEVEL = s;
You can’t perform that action at this time.
0 commit comments