Skip to content

Commit 5cd2ebb

Browse files
committed
Bump version to 0.4.1
1 parent 411852f commit 5cd2ebb

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

CHANGELOG.md

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

313
This is a release with plenty of new features that allow you to parse many more

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

237237
end
238238
```
@@ -261,7 +261,7 @@ $ brew install carthage
261261
Inside 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

267267
Then, 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
286286
dependencies: [
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

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.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"

XMLCoder.xcodeproj/project.pbxproj

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

0 commit comments

Comments
 (0)