Skip to content

Commit

Permalink
Committing version 1.0.3-beta (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
invozeeshan authored Oct 20, 2023
1 parent 44f9b59 commit 4b2e592
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Xcode
.DS_Store
.DS_Store*
*/build/*
*.pbxuser
!default.pbxuser
Expand Down
3 changes: 2 additions & 1 deletion OTFCDTDatastore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@ Pod::Spec.new do |s|
s.homepage = "http://github.com/cloudant/CDTDatastore"
s.license = {:type => 'Apache, Version 2.0', :text => license}
s.author = { "Cloudant, Inc." => "[email protected]" }
s.source = { :git => "https://github.com/HippocratesTech/OTFCDTDatastore", :tag => s.version }
s.source = { :git => "https://github.com/TheraForge/OTFCDTDatastore", :tag => s.version }

s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '8.0'
s.requires_arc = true

s.default_subspec = 'standard'
Expand Down
10 changes: 10 additions & 0 deletions OTFCDTDatastore.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3629,9 +3629,14 @@
PRODUCT_BUNDLE_IDENTIFIER = com.cloudant.CDTDatastore;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator watchos watchsimulator";
SUPPORTS_MACCATALYST = YES;
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2,4";
WATCHOS_DEPLOYMENT_TARGET = 8.0;
};
name = Debug;
};
Expand All @@ -3654,8 +3659,13 @@
PRODUCT_BUNDLE_IDENTIFIER = com.cloudant.CDTDatastore;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator watchos watchsimulator";
SUPPORTS_MACCATALYST = YES;
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = RELEASE;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2,4";
WATCHOS_DEPLOYMENT_TARGET = 8.0;
};
name = Release;
};
Expand Down
1 change: 1 addition & 0 deletions OTFCDTDatastoreTests/DatastoreCRUD.m
Original file line number Diff line number Diff line change
Expand Up @@ -1196,6 +1196,7 @@ -(void)testUpdatingWithUnderscoreDeleteFieldDoesNotDelete
// Create the first revision
NSString *key1 = @"hello";
NSString *value1 = @"world";


CDTDocumentRevision *rev = [CDTDocumentRevision revision];
rev.body = [@{key1:value1} mutableCopy];
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ OTFCDTDatastore provides Cloudant Sync to store, index and query local JSON data

Please refer to the top-level parent framework: [OTFToolBox](https://github.com/TheraForge/OTFToolBox)

## Change Log
<details open>
<summary>Release 1.0.3-beta</summary>
<ul>
<li>Added Watch OS support</li>
</ul>
</details>

## Table of contents
* [Overview](#overview)
Expand Down

0 comments on commit 4b2e592

Please sign in to comment.