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
8 changes: 4 additions & 4 deletions ContentstackPersistence.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ContentstackPersistence'
s.version = '0.1.1'
s.version = '0.1.2'
s.summary = 'Contentstack is a headless CMS with an API-first approach that puts content at the centre.'

s.description = <<-DESC
Expand All @@ -9,13 +9,13 @@ 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-persistence.git', :tag => 'v0.1.1' }
s.source = { :git => 'https://github.com/contentstack/contentstack-ios-persistence.git', :tag => 'v0.1.2' }
s.social_media_url = 'https://twitter.com/Contentstack'

s.ios.deployment_target = '12.0'
s.dependency 'Contentstack', '~> 3.16'
s.dependency 'Contentstack', '~> 3.16.1'
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
s.source_files = 'ContentstackPersistence/*.{h,m}'
s.public_header_files = 'ContentstackPersistence/*.{h}'
Expand Down
9 changes: 4 additions & 5 deletions ContentstackPersistenceCoreData.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ContentstackPersistenceCoreData'
s.version = '0.1.1'
s.version = '0.1.2'
s.summary = 'iOS persistence library to save app data on devices local storage.'
s.license = {
:type => 'MIT',
Expand All @@ -12,14 +12,13 @@ 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.author = { 'Contentstack' => 'support@contentstack.io' }
s.source = { :git => 'https://github.com/contentstack/contentstack-ios-persistence.git', :tag => 'v0.1.1' }
s.source = { :git => 'https://github.com/contentstack/contentstack-ios-persistence.git', :tag => 'v0.1.2' }
s.social_media_url = 'https://twitter.com/Contentstack'

s.ios.deployment_target = '12.0'
s.dependency 'Contentstack', '~> 3.16'
s.dependency 'ContentstackPersistence', '~> 0.1.1'
s.dependency 'Contentstack', '~> 3.16.1'
s.dependency 'ContentstackPersistence', '~> 0.1.2'
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
s.source_files = 'ContentstackPersistenceCoreData/*.{h,m}'
s.public_header_files = 'ContentstackPersistenceCoreData/*.h'
Expand Down
9 changes: 4 additions & 5 deletions ContentstackPersistenceRealm.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ContentstackPersistenceRealm'
s.version = '0.1.1'
s.version = '0.1.2'
s.summary = 'iOS persistence library to save app data on device local storage.'

s.license = {
Expand All @@ -14,14 +14,13 @@ 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.author = { 'Contentstack' => 'support@contentstack.io' }
s.source = { :git => 'https://github.com/contentstack/contentstack-ios-persistence.git', :tag => 'v0.1.1' }
s.source = { :git => 'https://github.com/contentstack/contentstack-ios-persistence.git', :tag => 'v0.1.2' }
s.social_media_url = 'https://twitter.com/Contentstack'

s.ios.deployment_target = '12.0'
s.dependency 'Contentstack', '~> 3.16'
s.dependency 'ContentstackPersistence', '~> 0.1.1'
s.dependency 'Contentstack', '~> 3.16.1'
s.dependency 'ContentstackPersistence', '~> 0.1.2'
s.dependency 'Realm', '~> 4.0'
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
s.source_files = 'ContentstackPersistenceRealm/*.{h,m}'
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Changelog

### Version 0.1.2 (2026-07-13) ###

#### Fixed

- Snyk fix: Corrected the podspec license metadata from `Commercial` to `MIT` (referencing the repository `LICENSE` file) to resolve the Snyk "Unknown license" finding.


### Documentation

#### Date: Apr-02-2026
Expand Down
Loading