From a7928e21ed17d42a61f80296f4114fd7dee17f2d Mon Sep 17 00:00:00 2001 From: WANG Jie Date: Tue, 12 Dec 2023 10:59:23 +0100 Subject: [PATCH] Bump version to 0.0.3 --- CSCrashReporter.podspec | 31 +++++++++++++++++++++++++++++++ Package.swift | 12 ++++++------ 2 files changed, 37 insertions(+), 6 deletions(-) create mode 100644 CSCrashReporter.podspec diff --git a/CSCrashReporter.podspec b/CSCrashReporter.podspec new file mode 100644 index 0000000..dbeae9e --- /dev/null +++ b/CSCrashReporter.podspec @@ -0,0 +1,31 @@ +Pod::Spec.new do |s| +s.name = 'CSCrashReporter' +s.version = '0.0.3' +s.summary = 'CrashReporter used by Contentsquare' +s.homepage = 'https://docs.contentsquare.com/ios' +s.author = { 'Romain Bouic' => 'romain.bouic@contentsquare.com' } +s.license = { :type => 'COMMERCIAL', :text => <<-LICENSE + The Content Square iOS SDK License 1.0 + (c) Content Square SAS 2023 + +By downloading, installing, implementing or otherwise using the Content Square SAS iOS SDK (“the Contentsquare iOS SDK”) you agree to the terms and conditions of this License Agreement. + +Contentsquare grants you a limited, royalty-free, non-exclusive, non-transferrable, non-sublicensable, revocable copyright license to use and reproduce, without modification, the Contentsquare iOS SDK solely to enable the use of Contentsquare with or in your iOS platform applications, subject to the following conditions: + +Other than as permitted in this agreement, you may not distribute, display, copy, execute publicly, make available to the public, reduce to human readable form, lease, resale, disassemble, decompile, adapt, sublicense, host as a service, make other commercial use of, sell, rent, lend, process, compile, reverse engineer, combine with other software, translate, modify, or create derivative works of the Contentsquare iOS SDK. + +Contentsquare has no obligation to enable you or any of your applications to access, interact with, or retrieve or publish content to any Contentsquare platform or service. However, Contentsquare may provide you with such platform services on additional terms. + +Contentsquare further has no obligation to provide support, maintenance, upgrades, modifications, or new releases of the Contentsquare iOS SDK, unless otherwise agreed in writing. + +All other rights are reserved. + +TO THE FULLEST EXTENT PERMITTED BY LAW, CONTENTSQUARE MAKES NO, AND HEREBY DISCLAIMS ANY AND ALL, REPRESENTATIONS WARRANTIES, CONDITIONS AND ALL OTHER TERMS OF ANY KIND WHATSOEVER WITH RESPECT TO THE CONTENTSQUARE iOS SDK AND RELATED DOCUMENTATION, OR ADDITIONAL SERVICES, WHETHER EXPRESS OR IMPLIED, ORAL OR WRITTEN, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF ACCURACY, QUALITY, PERFORMANCE, MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. FOR THE AVOIDANCE OF DOUBT, CONTENTSQUARE DOES NOT WARRANT THAT THE CONTENTSQUARE iOS SDK SHALL MEET YOUR NEEDS OR BE ERROR FREE. IN NO EVENT SHALL CONTENTSQUARE BE LIABLE FOR ANY TYPE OF DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE CONTENTSQUARE iOS SDK, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. YOU ASSUME SOLE RESPONSIBILITY FOR RESULTS OBTAINED FROM THE USE OF THE CONTENTSQUARE iOS SDK BY YOU. THE CONTENTSQUARE iOS SDK, SCRIPTS, OR ADDITIONAL SERVICES ARE PROVIDED TO YOU ON AN “AS IS” BASIS. +LICENSE +} +s.platform = :ios +s.swift_version = '5.1' +s.ios.deployment_target = '12.0' +s.ios.vendored_frameworks = 'CSCrashReporter.xcframework' +s.source = { :http => 'https://github.com/ContentSquare/CS_iOS_CrashReporter/releases/download/0.0.3/CSCrashReporter.xcframework.zip', :flatten => true } +end diff --git a/Package.swift b/Package.swift index d733226..d154ca0 100644 --- a/Package.swift +++ b/Package.swift @@ -4,17 +4,17 @@ import PackageDescription let package = Package( - name: "CS_iOS_CrashReporter", + name: "CSCrashReporter", platforms: [.iOS(.v12)], products: [ .library( - name: "CSPLCrashReporter", - targets: ["CSPLCrashReporter"]) + name: "CSCrashReporter", + targets: ["CSCrashReporter"]) ], targets: [ .binaryTarget( - name: "CSPLCrashReporter", - url: "https://github.com/ContentSquare/CS_iOS_CrashReporter/releases/download/0.0.2/CSCrashReporter.xcframework.zip", - checksum: "f32faa31fa900ab170ab64136c8c5b1306e39295b858623f4f6ed0546ce8c369") + name: "CSCrashReporter", + url: "https://github.com/ContentSquare/CS_iOS_CrashReporter/releases/download/0.0.3/CSCrashReporter.xcframework.zip", + checksum: "6499324f885d02026e5a3e30b535c8e9b3a6e3be624bd05059ef4e1e41070b97") ] )