diff --git a/CHANGELOG.md b/CHANGELOG.md index f48c6887..f5006d26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +### 1.42.1 + +- **Fixed**: Podspecs source and homepage urls + ### 1.42.0 - **Added**: TIDeeplink to support deeplink API diff --git a/LeadKit.podspec b/LeadKit.podspec index fa413634..4951bc33 100644 --- a/LeadKit.podspec +++ b/LeadKit.podspec @@ -2,10 +2,10 @@ Pod::Spec.new do |s| s.name = "LeadKit" s.version = "1.35.0" s.summary = "iOS framework with a bunch of tools for rapid development" - s.homepage = "https://gitlab.ti/touchinstinct/LeadKit" + s.homepage = "https://git.svc.touchin.ru/TouchInstinct/LeadKit" s.license = "Apache License, Version 2.0" s.author = "Touch Instinct" - s.source = { :git => "https://gitlab.ti/touchinstinct/LeadKit.git", :tag => s.version } + s.source = { :git => "https://git.svc.touchin.ru/TouchInstinct/LeadKit.git", :tag => s.version } s.platform = :ios, '10.0' s.swift_versions = ['5.1'] diff --git a/README.md b/README.md index 30237366..77c996d7 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ LICENSE ./setup ``` -- If legacy [Source](https://gitlab.ti/touchinstinct/LeadKit/tree/master/Sources) folder needed, [build dependencies for LeadKit.xcodeproj](https://gitlab.ti/touchinstinct/LeadKit/blob/master/docs/snippets.md#build-dependencies-for-LeadKit.xcodeproj). +- If legacy [Source](https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/master/Sources) folder needed, [build dependencies for LeadKit.xcodeproj](https://git.svc.touchin.ru/TouchInstinct/LeadKit/blob/master/docs/snippets.md#build-dependencies-for-LeadKit.xcodeproj). - Make sure the commit message codestyle is followed. More about [Semantic Commit Messages](docs/semantic-commit-messages.md). @@ -112,14 +112,14 @@ LICENSE ```swift dependencies: [ - .package(url: "https://gitlab.ti/touchinstinct/LeadKit.git", from: "x.y.z"), + .package(url: "https://git.svc.touchin.ru/TouchInstinct/LeadKit.git", from: "x.y.z"), ], ``` ### Cocoapods ```ruby -source 'https://gitlab.ti/touchinstinct/Podspecs.git' +source 'https://git.svc.touchin.ru/TouchInstinct/Podspecs.git' pod 'TISwiftUtils', 'x.y.z' pod 'TIFoundationUtils', 'x.y.z' diff --git a/TIAppleMapUtils/TIAppleMapUtils.podspec b/TIAppleMapUtils/TIAppleMapUtils.podspec index b09aa33c..f5debf4b 100644 --- a/TIAppleMapUtils/TIAppleMapUtils.podspec +++ b/TIAppleMapUtils/TIAppleMapUtils.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TIAppleMapUtils' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Set of helpers for map objects clustering and interacting using Apple MapKit.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] diff --git a/TIAuth/TIAuth.podspec b/TIAuth/TIAuth.podspec index 9af515b0..26ef8252 100644 --- a/TIAuth/TIAuth.podspec +++ b/TIAuth/TIAuth.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TIAuth' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Login, registration, confirmation and other related actions' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '13.0' s.swift_versions = ['5.3'] diff --git a/TIDeeplink/TIDeeplink.podspec b/TIDeeplink/TIDeeplink.podspec index d22fe7b5..dce7d4c4 100644 --- a/TIDeeplink/TIDeeplink.podspec +++ b/TIDeeplink/TIDeeplink.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = 'TIDeeplink' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Deeplink service API' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru', 'castlele' => 'nikita.semenov@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] diff --git a/TIDeveloperUtils/TIDeveloperUtils.podspec b/TIDeveloperUtils/TIDeveloperUtils.podspec index 211f0c91..31c521be 100644 --- a/TIDeveloperUtils/TIDeveloperUtils.podspec +++ b/TIDeveloperUtils/TIDeveloperUtils.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = 'TIDeveloperUtils' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Universal web view API' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru', 'castlele' => 'nikita.semenov@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] diff --git a/TIEcommerce/TIEcommerce.podspec b/TIEcommerce/TIEcommerce.podspec index 0acab9b1..f081cb7d 100644 --- a/TIEcommerce/TIEcommerce.podspec +++ b/TIEcommerce/TIEcommerce.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TIEcommerce' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Cart, products, promocodes, bonuses and other related actions' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] diff --git a/TIFoundationUtils/TIFoundationUtils.podspec b/TIFoundationUtils/TIFoundationUtils.podspec index 18c9a0ba..4a4fbc18 100644 --- a/TIFoundationUtils/TIFoundationUtils.podspec +++ b/TIFoundationUtils/TIFoundationUtils.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TIFoundationUtils' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Set of helpers for Foundation framework classes.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '10.0' s.swift_versions = ['5.3'] diff --git a/TIGoogleMapUtils/TIGoogleMapUtils.podspec b/TIGoogleMapUtils/TIGoogleMapUtils.podspec index 682d0fa7..a4646b11 100644 --- a/TIGoogleMapUtils/TIGoogleMapUtils.podspec +++ b/TIGoogleMapUtils/TIGoogleMapUtils.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TIGoogleMapUtils' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Set of helpers for map objects clustering and interacting using Google Maps SDK.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '12.0' s.swift_versions = ['5.3'] diff --git a/TIKeychainUtils/TIKeychainUtils.podspec b/TIKeychainUtils/TIKeychainUtils.podspec index b9ede117..7ca39047 100644 --- a/TIKeychainUtils/TIKeychainUtils.podspec +++ b/TIKeychainUtils/TIKeychainUtils.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TIKeychainUtils' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Set of helpers for Keychain classes.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] diff --git a/TIMapUtils/TIMapUtils.podspec b/TIMapUtils/TIMapUtils.podspec index 6b243fec..10391174 100644 --- a/TIMapUtils/TIMapUtils.podspec +++ b/TIMapUtils/TIMapUtils.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TIMapUtils' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Set of helpers for map objects clustering and interacting.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '10.0' s.swift_versions = ['5.3'] diff --git a/TIMoyaNetworking/TIMoyaNetworking.podspec b/TIMoyaNetworking/TIMoyaNetworking.podspec index 2816bbf5..8ccaafef 100644 --- a/TIMoyaNetworking/TIMoyaNetworking.podspec +++ b/TIMoyaNetworking/TIMoyaNetworking.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TIMoyaNetworking' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Moya + Swagger network service.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] diff --git a/TINetworking/TINetworking.podspec b/TINetworking/TINetworking.podspec index d3cb51e4..ee7d4f99 100644 --- a/TINetworking/TINetworking.podspec +++ b/TINetworking/TINetworking.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TINetworking' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Swagger-frendly networking layer helpers.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '10.0' s.swift_versions = ['5.3'] diff --git a/TINetworkingCache/TINetworkingCache.podspec b/TINetworkingCache/TINetworkingCache.podspec index 7c6f108d..d08a6fb3 100644 --- a/TINetworkingCache/TINetworkingCache.podspec +++ b/TINetworkingCache/TINetworkingCache.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TINetworkingCache' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Caching results of EndpointRequests.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] diff --git a/TIPagination/TIPagination.podspec b/TIPagination/TIPagination.podspec index 29cf019b..6e52f92f 100644 --- a/TIPagination/TIPagination.podspec +++ b/TIPagination/TIPagination.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TIPagination' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Generic pagination component.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '10.0' s.swift_versions = ['5.3'] diff --git a/TISwiftUICore/TISwiftUICore.podspec b/TISwiftUICore/TISwiftUICore.podspec index cc9aa89a..40f0559d 100644 --- a/TISwiftUICore/TISwiftUICore.podspec +++ b/TISwiftUICore/TISwiftUICore.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TISwiftUICore' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Core UI elements: protocols, views and helpers.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '13.0' s.swift_versions = ['5.3'] diff --git a/TISwiftUtils/TISwiftUtils.podspec b/TISwiftUtils/TISwiftUtils.podspec index b84ff47f..80d7f643 100644 --- a/TISwiftUtils/TISwiftUtils.podspec +++ b/TISwiftUtils/TISwiftUtils.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TISwiftUtils' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Bunch of useful helpers for Swift development.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '9.0' s.swift_versions = ['5.3'] diff --git a/TITableKitUtils/TITableKitUtils.podspec b/TITableKitUtils/TITableKitUtils.podspec index d0b561e4..1ef13a7d 100644 --- a/TITableKitUtils/TITableKitUtils.podspec +++ b/TITableKitUtils/TITableKitUtils.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TITableKitUtils' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Set of helpers for TableKit classes.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] diff --git a/TITransitions/TITransitions.podspec b/TITransitions/TITransitions.podspec index 39a30619..236ea96c 100644 --- a/TITransitions/TITransitions.podspec +++ b/TITransitions/TITransitions.podspec @@ -2,10 +2,10 @@ Pod::Spec.new do |s| s.name = 'TITransitions' s.version = '1.34.1' s.summary = 'Set of custom transitions to present controller. ' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'Loupehope' => 'vladislav.suhomlinov@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.0'] diff --git a/TIUIElements/TIUIElements.podspec b/TIUIElements/TIUIElements.podspec index 5a2ebe0e..9374abdf 100644 --- a/TIUIElements/TIUIElements.podspec +++ b/TIUIElements/TIUIElements.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = 'TIUIElements' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Bunch of useful protocols and views.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru', 'castlele' => 'nikita.semenov@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] diff --git a/TIUIKitCore/TIUIKitCore.podspec b/TIUIKitCore/TIUIKitCore.podspec index 6f43e351..0ac85e7d 100644 --- a/TIUIKitCore/TIUIKitCore.podspec +++ b/TIUIKitCore/TIUIKitCore.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = 'TIUIKitCore' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Core UI elements: protocols, views and helpers.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru', 'castlele' => 'nikita.semenov@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] diff --git a/TIWebView/TIWebView.podspec b/TIWebView/TIWebView.podspec index af561a0a..3d89875e 100644 --- a/TIWebView/TIWebView.podspec +++ b/TIWebView/TIWebView.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = 'TIWebView' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Universal web view API' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru', 'castlele' => 'nikita.semenov@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '11.0' s.swift_versions = ['5.3'] diff --git a/TIYandexMapUtils/TIYandexMapUtils.podspec b/TIYandexMapUtils/TIYandexMapUtils.podspec index c6d6ee72..2b1fcfa5 100644 --- a/TIYandexMapUtils/TIYandexMapUtils.podspec +++ b/TIYandexMapUtils/TIYandexMapUtils.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = 'TIYandexMapUtils' - s.version = '1.42.0' + s.version = '1.42.1' s.summary = 'Set of helpers for map objects clustering and interacting using Yandex Maps SDK.' - s.homepage = 'https://gitlab.ti/touchinstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name + s.homepage = 'https://git.svc.touchin.ru/TouchInstinct/LeadKit/tree/' + s.version.to_s + '/' + s.name s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'petropavel13' => 'ivan.smolin@touchin.ru' } - s.source = { :git => 'https://gitlab.ti/touchinstinct/LeadKit.git', :tag => s.version.to_s } + s.source = { :git => 'https://git.svc.touchin.ru/TouchInstinct/LeadKit.git', :tag => s.version.to_s } s.ios.deployment_target = '12.0' s.swift_versions = ['5.3'] diff --git a/project-scripts/push_to_podspecs.sh b/project-scripts/push_to_podspecs.sh index b3a69986..5d5f3827 100755 --- a/project-scripts/push_to_podspecs.sh +++ b/project-scripts/push_to_podspecs.sh @@ -14,5 +14,5 @@ # for module_name in $(cat ${SRCROOT}/project-scripts/ordered_modules_list.txt); do - bundle exec pod repo push git@gitlab.ti:touchinstinct/Podspecs ${SRCROOT}/${module_name}/${module_name}.podspec "$@" --allow-warnings + bundle exec pod repo push https://git.svc.touchin.ru/TouchInstinct/Podspecs ${SRCROOT}/${module_name}/${module_name}.podspec "$@" --allow-warnings done