Skip to content

Commit e4b098a

Browse files
committed
Updated for 2.2.3 release
1 parent 8894edf commit e4b098a

File tree

19 files changed

+248
-648
lines changed

19 files changed

+248
-648
lines changed

.travis.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
language: objective-c
2-
before_script:
3-
- brew update
4-
- brew upgrade xctool || true
5-
osx_image: xcode7.3
6-
script: xctool test -project Tests/UnitTests.xcodeproj -scheme UnitTests -sdk iphonesimulator
2+
osx_image: xcode9
3+
4+
script: xcodebuild test -project Tests/UnitTests.xcodeproj -scheme UnitTests -destination 'platform=iOS Simulator,name=iPhone 8 Plus,OS=11.0'

AutoCoding.podspec.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "AutoCoding",
3-
"version": "2.2.2",
3+
"version": "2.2.3",
44
"summary": "AutoCoding is a category on NSObject that provides automatic support for NSCoding to any object.",
55
"homepage": "https://github.com/nicklockwood/AutoCoding",
66
"license": "zlib",
77
"authors": "Nick Lockwood",
88
"source": {
99
"git": "https://github.com/nicklockwood/AutoCoding.git",
10-
"tag": "2.2.2"
10+
"tag": "2.2.3"
1111
},
1212
"platforms": {
1313
"ios": "4.3",

AutoCoding/AutoCoding.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// AutoCoding.h
33
//
4-
// Version 2.2.2
4+
// Version 2.2.3
55
//
66
// Created by Nick Lockwood on 19/11/2011.
77
// Copyright (c) 2011 Charcoal Design
@@ -97,7 +97,7 @@ NS_ASSUME_NONNULL_BEGIN
9797
* being used to load it, an exception will be thrown (to avoid this, call the
9898
* method on `NSObject` instead of a specific subclass).
9999
*/
100-
+ (instancetype)objectWithContentsOfFile:(NSString *)path;
100+
+ (nullable instancetype)objectWithContentsOfFile:(NSString *)path;
101101

102102
/**
103103
* Attempts to write the file to disk. This method is overridden by the

AutoCoding/AutoCoding.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// AutoCoding.m
33
//
4-
// Version 2.2.2
4+
// Version 2.2.3
55
//
66
// Created by Nick Lockwood on 19/11/2011.
77
// Copyright (c) 2011 Charcoal Design

0 commit comments

Comments
 (0)