Skip to content

Commit 8982651

Browse files
committed
Adds CHANGELOG and releases v1.0.4
1 parent eaf8132 commit 8982651

File tree

4 files changed

+21
-6
lines changed

4 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# NestedCloudKitCodable - Changelog
2+
3+
Follows the [SemVer 2.0.0](https://semver.org/).
4+
5+
# v1.0.4 - 26/08/2020
6+
7+
### Fixed
8+
- Fixed support for custom zone id when creating a reference (thanks to [HasanKassem](https://github.com/HasanKassem))
9+
10+
# v1.0.3 - 25/08/2020
11+
12+
### Added
13+
- Support to tvOS and macOS.

NestedCloudKitCodable.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 = 'NestedCloudKitCodable'
3-
s.version = '1.0.3'
3+
s.version = '1.0.4'
44
s.summary = "Nested encoder and decoder for CKRecords."
55
s.description = <<-DESC
66
NestedCloudKitCodable is a library to help you encode your custom objects to CloudKit CKRecord format

NestedCloudKitCodable.xcodeproj/project.pbxproj

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@
172172
6375387A24F5347F0093936D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
173173
6375387C24F5347F0093936D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
174174
6375387D24F5347F0093936D /* PushNotificationPayload.apns */ = {isa = PBXFileReference; lastKnownFileType = text; path = PushNotificationPayload.apns; sourceTree = "<group>"; };
175+
6382668424F67A7000E6DC97 /* CHANGELOG.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = "<group>"; };
175176
63A249A124F567BB008C8C56 /* NestedCKCodable.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = NestedCKCodable.framework; sourceTree = BUILT_PRODUCTS_DIR; };
176177
63A249A324F567BB008C8C56 /* NestedCKCodable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NestedCKCodable.h; sourceTree = "<group>"; };
177178
63A249B524F567E9008C8C56 /* Constants.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
@@ -196,7 +197,7 @@
196197
63A249E124F56A65008C8C56 /* CloudKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CloudKit.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CloudKit.framework; sourceTree = DEVELOPER_DIR; };
197198
63A24A0424F57E0B008C8C56 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
198199
63A24A0524F57E0B008C8C56 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
199-
63A24A0624F57E0B008C8C56 /* NestedCloudKitCodable.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NestedCloudKitCodable.podspec; sourceTree = "<group>"; };
200+
63A24A0624F57E0B008C8C56 /* NestedCloudKitCodable.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NestedCloudKitCodable.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
200201
63CDFCE224F53C9400535338 /* CloudKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CloudKit.framework; path = System/Library/Frameworks/CloudKit.framework; sourceTree = SDKROOT; };
201202
63CDFCE524F53D5800535338 /* .swiftlint.yml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = .swiftlint.yml; sourceTree = "<group>"; };
202203
63CDFCEC24F5463200535338 /* Person.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Person.swift; sourceTree = "<group>"; };
@@ -364,6 +365,7 @@
364365
63A24A0624F57E0B008C8C56 /* NestedCloudKitCodable.podspec */,
365366
63A24A0424F57E0B008C8C56 /* LICENSE */,
366367
63A24A0524F57E0B008C8C56 /* README.md */,
368+
6382668424F67A7000E6DC97 /* CHANGELOG.md */,
367369
);
368370
name = "Podspec Metadata";
369371
sourceTree = "<group>";
@@ -1699,7 +1701,7 @@
16991701
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
17001702
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
17011703
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1702-
MARKETING_VERSION = 1.0.3;
1704+
MARKETING_VERSION = 1.0.4;
17031705
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
17041706
MTL_FAST_MATH = YES;
17051707
PRODUCT_BUNDLE_IDENTIFIER = com.nestedCloudKit.NestedCKCodable;
@@ -1734,7 +1736,7 @@
17341736
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
17351737
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
17361738
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1737-
MARKETING_VERSION = 1.0.3;
1739+
MARKETING_VERSION = 1.0.4;
17381740
MTL_FAST_MATH = YES;
17391741
PRODUCT_BUNDLE_IDENTIFIER = com.nestedCloudKit.NestedCKCodable;
17401742
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";

Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- NestedCloudKitCodable (1.0.2)
2+
- NestedCloudKitCodable (1.0.4)
33
- SwiftLint (0.40.0)
44

55
DEPENDENCIES:
@@ -15,7 +15,7 @@ EXTERNAL SOURCES:
1515
:path: "./"
1616

1717
SPEC CHECKSUMS:
18-
NestedCloudKitCodable: d400d9dd9662e1476558d4f5d351a30cbb07e701
18+
NestedCloudKitCodable: c763e1fce636de277a62ae9c2bdbfd4d50662768
1919
SwiftLint: 4154893c73a4c52d6240195507eb7a3e3c64087e
2020

2121
PODFILE CHECKSUM: 2ffe4c6d25cbfb6b22eb4b0a78b0a2359a4bb4f2

0 commit comments

Comments
 (0)