Skip to content

Commit 96d210e

Browse files
committed
Bump version to 0.9.0
1 parent 0c1774a commit 96d210e

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
313313

314314
```swift
315315
dependencies: [
316-
.package(url: "https://github.com/MaxDesiatov/XMLCoder.git", from: "0.8.0")
316+
.package(url: "https://github.com/MaxDesiatov/XMLCoder.git", from: "0.9.0")
317317
]
318318
```
319319

@@ -338,11 +338,12 @@ Inside of your `Podfile`, specify the `XMLCoder` pod:
338338
# platform :ios, '9.0'
339339

340340
target 'YourApp' do
341-
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
341+
# Comment the next line if you're not using Swift or don't want
342+
# to use dynamic frameworks
342343
use_frameworks!
343344

344-
# Pods for Test
345-
pod 'XMLCoder', '~> 0.8.0'
345+
# Pods for YourApp
346+
pod 'XMLCoder', '~> 0.9.0'
346347
end
347348
```
348349

@@ -370,7 +371,7 @@ $ brew install carthage
370371
Inside of your `Cartfile`, add GitHub path to `XMLCoder`:
371372

372373
```ogdl
373-
github "MaxDesiatov/XMLCoder" ~> 0.8.0
374+
github "MaxDesiatov/XMLCoder" ~> 0.9.0
374375
```
375376

376377
Then, run the following command to build the framework:

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.8.0"
3+
s.version = "0.9.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
@@ -921,7 +921,7 @@
921921
CLANG_ENABLE_OBJC_ARC = YES;
922922
COMBINE_HIDPI_IMAGES = YES;
923923
COPY_PHASE_STRIP = NO;
924-
CURRENT_PROJECT_VERSION = 0.8.0;
924+
CURRENT_PROJECT_VERSION = 0.9.0;
925925
DEBUG_INFORMATION_FORMAT = dwarf;
926926
DYLIB_INSTALL_NAME_BASE = "@rpath";
927927
ENABLE_NS_ASSERTIONS = YES;
@@ -949,7 +949,7 @@
949949
CLANG_ENABLE_OBJC_ARC = YES;
950950
COMBINE_HIDPI_IMAGES = YES;
951951
COPY_PHASE_STRIP = YES;
952-
CURRENT_PROJECT_VERSION = 0.8.0;
952+
CURRENT_PROJECT_VERSION = 0.9.0;
953953
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
954954
DYLIB_INSTALL_NAME_BASE = "@rpath";
955955
GCC_OPTIMIZATION_LEVEL = s;

0 commit comments

Comments
 (0)