Skip to content

Commit ae732b9

Browse files
committed
Bump version to 0.6.0, update CHANGELOG.md
1 parent effb838 commit ae732b9

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
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

315
Bugfix release that restores decoding of empty sequences, which became broken in

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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'
245244
end
246245
```
247246

@@ -269,7 +268,7 @@ $ brew install carthage
269268
Inside 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

275274
Then, 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
294293
dependencies: [
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

XMLCoder.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::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"

XMLCoder.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@
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;
@@ -767,7 +767,7 @@
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;

0 commit comments

Comments
 (0)