Skip to content

Commit

Permalink
Bump version to 0.7.0, update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov committed Jul 2, 2019
1 parent 388c998 commit 06295cb
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 6 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# 0.7.0 (July 2, 2019)

This release changes the behavior of attributes coding: now order of XML
attributes is fully preserved. One of the benefits is that it improves unit
testing for users of XMLCoder, which allows testing against specific encoded
attributes without accounting for their randomized order. Also a small coding
style fix is included. In addition, XMLCoder now uses Azure Pipelines instead of
Travis for CI with great improvements to overall CI stability, speed, and
parallel builds. Thanks to [Andrés Cecilia Luque](https://github.com/acecilia)
and [Jay Hickey](https://github.com/jayhickey) for the contributions!

## Merged pull requests

- Change components variable from var to let
[\#107](https://github.com/MaxDesiatov/XMLCoder/pull/107)
([jayhickey](https://github.com/jayhickey))
- Keep the order of the attributes during encoding operations
[\#110](https://github.com/MaxDesiatov/XMLCoder/pull/110)
([acecilia](https://github.com/acecilia))
- Migrate from Travis to Azure Pipelines
[\#111](https://github.com/MaxDesiatov/XMLCoder/pull/111)
([MaxDesiatov](https://github.com/MaxDesiatov))

# 0.6.0 (June 17, 2019)

An improvement release that introduces `convertFromKebabCase` and
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ easy as adding it to the `dependencies` value of your `Package.swift`.

```swift
dependencies: [
.package(url: "https://github.com/MaxDesiatov/XMLCoder.git", from: "0.6.0")
.package(url: "https://github.com/MaxDesiatov/XMLCoder.git", from: "0.7.0")
]
```

Expand Down Expand Up @@ -256,7 +256,7 @@ target 'YourApp' do
use_frameworks!

# Pods for Test
pod 'XMLCoder', '~> 0.6.0'
pod 'XMLCoder', '~> 0.7.0'
end
```

Expand Down Expand Up @@ -284,7 +284,7 @@ $ brew install carthage
Inside of your `Cartfile`, add GitHub path to `XMLCoder`:

```ogdl
github "MaxDesiatov/XMLCoder" ~> 0.6.0
github "MaxDesiatov/XMLCoder" ~> 0.7.0
```

Then, run the following command to build the framework:
Expand Down
2 changes: 1 addition & 1 deletion XMLCoder.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "XMLCoder"
s.version = "0.6.0"
s.version = "0.7.0"
s.summary = "XMLEncoder & XMLDecoder using the Codable protocol in Swift"
s.description = "XMLCoder allows Swift Codable-conforming objects to be translated to and from XML"
s.homepage = "https://github.com/MaxDesiatov/XMLCoder"
Expand Down
4 changes: 2 additions & 2 deletions XMLCoder.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@
CLANG_ENABLE_OBJC_ARC = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 0.6.0;
CURRENT_PROJECT_VERSION = 0.7.0;
DEBUG_INFORMATION_FORMAT = dwarf;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_NS_ASSERTIONS = YES;
Expand Down Expand Up @@ -767,7 +767,7 @@
CLANG_ENABLE_OBJC_ARC = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 0.6.0;
CURRENT_PROJECT_VERSION = 0.7.0;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_OPTIMIZATION_LEVEL = s;
Expand Down

0 comments on commit 06295cb

Please sign in to comment.