Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
- README and Docs/overview: Customer-facing deprecation announcement (new development → Swift CDA + SPM).
- Added `DEPRECATION.md`: customer-facing deprecation notice (Swift SDK + SPM, existing CocoaPods users, support expectations, industry context).

### Version: 3.16.1
#### Date: Jul-13-2026

##### Maintenance:
- Synced runtime SDK version (`X-User-Agent` header and bundle version) with the podspec release version

### Version: 3.16.0
#### Date: Sep-22-2025

Expand Down
6 changes: 3 additions & 3 deletions Contentstack.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Contentstack'
s.version = '3.16.0'
s.version = '3.16.1'
s.summary = 'Contentstack is a headless CMS with an API-first approach that puts content at the centre.'

s.description = <<-DESC
Expand All @@ -9,10 +9,10 @@ In a world where content is consumed via countless channels and form factors acr
DESC

s.homepage = 'https://www.contentstack.com/'
s.license = { :type => 'Commercial',:text => 'See https://www.contentstack.com/'}
s.license = { :type => 'MIT',:file => 'LICENSE'}
s.author = { 'Contentstack' => 'support@contentstack.io' }

s.source = { :git => 'https://github.com/contentstack/contentstack-ios.git', :tag => 'v3.14.0' }
s.source = { :git => 'https://github.com/contentstack/contentstack-ios.git', :tag => 'v3.16.1' }
s.social_media_url = 'https://twitter.com/Contentstack'

s.ios.deployment_target = '12.0'
Expand Down
2 changes: 1 addition & 1 deletion Contentstack/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.10.1</string>
<string>3.16.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion ContentstackInternal/CSIOCoreHTTPNetworking.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#import "NSObject+Extensions.h"
#import "CSURLSessionManager.h"

NSString *const sdkVersion = @"3.10.1";
NSString *const sdkVersion = @"3.16.1";

@interface CSIOCoreHTTPNetworking (){
id networkChangeObserver;
Expand Down
Loading