Skip to content

Commit

Permalink
Bump version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov committed Oct 19, 2019
1 parent 0c1774a commit 96d210e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,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.8.0")
.package(url: "https://github.com/MaxDesiatov/XMLCoder.git", from: "0.9.0")
]
```

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

target 'YourApp' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
# Comment the next line if you're not using Swift or don't want
# to use dynamic frameworks
use_frameworks!

# Pods for Test
pod 'XMLCoder', '~> 0.8.0'
# Pods for YourApp
pod 'XMLCoder', '~> 0.9.0'
end
```

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

```ogdl
github "MaxDesiatov/XMLCoder" ~> 0.8.0
github "MaxDesiatov/XMLCoder" ~> 0.9.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.8.0"
s.version = "0.9.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 @@ -921,7 +921,7 @@
CLANG_ENABLE_OBJC_ARC = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 0.8.0;
CURRENT_PROJECT_VERSION = 0.9.0;
DEBUG_INFORMATION_FORMAT = dwarf;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_NS_ASSERTIONS = YES;
Expand Down Expand Up @@ -949,7 +949,7 @@
CLANG_ENABLE_OBJC_ARC = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 0.8.0;
CURRENT_PROJECT_VERSION = 0.9.0;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_OPTIMIZATION_LEVEL = s;
Expand Down

0 comments on commit 96d210e

Please sign in to comment.