final changes
This commit is contained in:
parent
e11b129a75
commit
8b9f3edace
|
|
@ -1,5 +1,13 @@
|
|||
# Changelog
|
||||
|
||||
### 0.8.7
|
||||
- **Add**: Base configurable controllers hierarchy with generic custom view argument (`BaseConfigurableController`, `BaseCustomViewController`, `BaseScrollContentController`, `BaseTableContentController` and `BaseCollectionContentController`).
|
||||
- **Add**: `ScrollViewHolder`, `TableViewHolder` and `CollectionViewHolder` protocols.
|
||||
- **Update**: Update dependencies.
|
||||
- **[Breaking change]**: Update `SwiftDate` to 5.0.x.
|
||||
- **[Breaking change]**: Update `DateFormattingService`. Change `format` argument from `DateFormatType` to `String`.
|
||||
- **Update**: Add compile time debug messages. Improve compile time for some pieces of code.
|
||||
|
||||
### 0.8.6
|
||||
|
||||
- **Fix**: Add `trustPolicies` param to `NetworkServiceConfiguration` initialization.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = "LeadKit"
|
||||
s.version = "0.8.6"
|
||||
s.version = "0.8.7"
|
||||
s.summary = "iOS framework with a bunch of tools for rapid development"
|
||||
s.homepage = "https://github.com/TouchInstinct/LeadKit"
|
||||
s.license = "Apache License, Version 2.0"
|
||||
|
|
|
|||
8
Podfile
8
Podfile
|
|
@ -63,14 +63,6 @@ post_install do |installer|
|
|||
config.build_settings.delete('CODE_SIGNING_ALLOWED')
|
||||
config.build_settings.delete('CODE_SIGNING_REQUIRED')
|
||||
end
|
||||
|
||||
# 1.4+
|
||||
installer.pods_project.targets.each do |target|
|
||||
target.build_configurations.each do |config|
|
||||
config.build_settings['CONFIGURATION_BUILD_DIR'] = '$PODS_CONFIGURATION_BUILD_DIR'
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
# If you have slow HDD
|
||||
|
|
|
|||
|
|
@ -43,6 +43,6 @@ SPEC CHECKSUMS:
|
|||
TableKit: 506650573ed96ec007649b655559ecd43f9fd505
|
||||
UIScrollView-InfiniteScroll: 3ef456bcbe759c19f510a383cff96e6647c98c98
|
||||
|
||||
PODFILE CHECKSUM: 36f32b7ded88042eb5e271ce161ca7cef17fea62
|
||||
PODFILE CHECKSUM: fd9789ede36fcba83a5b12f15edf8b32183698ba
|
||||
|
||||
COCOAPODS: 1.5.3
|
||||
|
|
|
|||
Loading…
Reference in New Issue