Skip to content
This repository has been archived by the owner on Jun 11, 2018. It is now read-only.

Commit

Permalink
[2.2.0]: Version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
danthorpe committed Sep 14, 2017
1 parent ea62629 commit 23a8a15
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 19 deletions.
8 changes: 4 additions & 4 deletions .jazzy.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"author_url": "http://danthorpe.me",
"github_url": "https://github.com/danthorpe/ValueCoding",
"module": "ValueCoding",
"module_version": "2.0.0",
"module_version": "2.2.0",
"readme": "README.md",
"swift_version": "2.3",
"swift_version": "3.2",
"xcodebuild_arguments": [
"-project", "ValueCoding.xcodeproj",
"-project", "ValueCoding.xcodeproj",
"-scheme", "ValueCoding"
],
"exclude": ["Tests"]
}
}
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0
3.2
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 2.2.0
This is for Xcode 9, Swift 3.2

# 2.1.0
This is for Xcode 8.1, Swift 3.0.1

Expand All @@ -18,7 +21,7 @@ This is a Swift 2.3 compatible version

# 1.2.0
1. [[VCD-9, VCD-10](https://github.com/danthorpe/ValueCoding/pull/10)]: Adds support for a single level of nesting inside SequenceType values. For example it is now possible to encode and decode `[[Foo]]` structures where `Foo` conforms to `ValueCoding`.

# 1.1.1
1. [[VCD-7](https://github.com/danthorpe/ValueCoding/pull/7)]: Updates CI stuff.
2. [[VCD-8](https://github.com/danthorpe/ValueCoding/pull/8)]: Updates documentation and README. Thanks [@mrackwitz](https://github.com/danthorpe/ValueCoding/commit/489809da1ba70abf09bc519b784d77a3c47b9f41).
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ struct Foo: ValueCoding {
class FooCoder: NSObject, NSCoding, CodingType {

enum Keys: String {
case Bar = "bar"
case bar = "bar"
}

let value: Foo
Expand Down Expand Up @@ -87,4 +87,3 @@ ValueCoding builds as a cross platform (iOS, OS X, watchOS, tvOS) extension comp
```ruby
pod 'ValueCoding'
```

2 changes: 1 addition & 1 deletion Supporting Files/Version.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VALUECODING_VERSION = 2.1.0
VALUECODING_VERSION = 2.2.0
19 changes: 9 additions & 10 deletions ValueCoding.podspec
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Pod::Spec.new do |s|
s.name = "ValueCoding"
s.version = "2.1.0"
s.version = "2.2.0"
s.summary = "Swift protocols for encoding/decoding value types."
s.description = <<-DESC
ValueCoding is a simple pair of protocols to support the archiving
ValueCoding is a simple pair of protocols to support the archiving
and unarchiving of Swift value types.
It works by allowing a value type, which must conform to ValueCoding
to define via a typealias its archiver. The archiver is another type
which implements the ArchiverType protocol. This type will typically
be an NSObject which implements NSCoding and is an adaptor which is
It works by allowing a value type, which must conform to ValueCoding
to define via a typealias its archiver. The archiver is another type
which implements the ArchiverType protocol. This type will typically
be an NSObject which implements NSCoding and is an adaptor which is
responsible for encoding and decoding the properties of the value.
DESC
Expand All @@ -24,7 +24,6 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'Sources/*.swift'
s.watchos.deployment_target = '2.0'
s.source_files = 'Sources/*.swift'
end

0 comments on commit 23a8a15

Please sign in to comment.