File tree 6 files changed +23
-6
lines changed 6 files changed +23
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## 7.3 Test coverage and bug-fixing
2
+ ### Added
3
+ - Missed public init for Empty Header/Footer generators
4
+ - Entry for baseNonReusable
5
+ - Warnings and assertion failures for unused or misconfigured plugins
6
+ - ** New item** to automate updating of resizable cells - ` ExpandableItem `
7
+ - ** New feature** Multiple drag-n-drop
8
+ - ** Code coverage** from UI and Unit tests
9
+
10
+ ### Updated
11
+ - Example of usage RDDM in tvOS
12
+ - Model of project generation
13
+
14
+ ### Fixed
15
+ - Configuration of Example blocking development on Apple Silicon
16
+
17
+
1
18
## 7.2.1 SelectableItem fixes and minor improvements
2
19
### Added
3
20
- ` didDeselectEvent ` to ` SelectableItem `
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ targetTemplates:
34
34
settings :
35
35
base :
36
36
PRODUCT_BUNDLE_IDENTIFIER : ${bundle_id}
37
- MARKETING_VERSION : " 7.2.1 "
37
+ MARKETING_VERSION : " 7.3 "
38
38
CURRENT_PROJECT_VERSION : 0
39
39
VERSIONING_SYSTEM : " apple-generic"
40
40
DEBUG_INFORMATION_FORMAT : dwarf-with-dsym
Original file line number Diff line number Diff line change @@ -69,11 +69,11 @@ update_version:
69
69
70
70
# # Lint lib for cocoapods
71
71
lint_lib :
72
- pod lib lint --allow-warnings
72
+ bundle exec pod lib lint --allow-warnings
73
73
74
74
# # Publish Lib in cocoapods
75
75
publish_lib :
76
- pod trunk push --allow-warnings
76
+ bundle exec pod trunk push --allow-warnings
77
77
78
78
# # Colors
79
79
GREEN := $(shell tput -Txterm setaf 2)
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ You can check more examples in our [example project](/Example/) or in full [docu
129
129
Just add ReactiveDataDisplayManager to your ` Podfile ` like this
130
130
131
131
```
132
- pod 'ReactiveDataDisplayManager' ~> 7.2.1
132
+ pod 'ReactiveDataDisplayManager' ~> 7.3
133
133
```
134
134
135
135
## Changelog
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "ReactiveDataDisplayManager"
3
- s . version = "7.2.1 "
3
+ s . version = "7.3 "
4
4
s . summary = "Library with custom events and reusable adapter for scrollable UI Collections"
5
5
s . homepage = "https://github.com/surfstudio/ReactiveDataDisplayManager"
6
6
s . license = "MIT"
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ targets:
36
36
settings :
37
37
base :
38
38
PRODUCT_BUNDLE_IDENTIFIER : ru.surfstudio.rddm
39
- MARKETING_VERSION : " 7.2.1 "
39
+ MARKETING_VERSION : " 7.3 "
40
40
CURRENT_PROJECT_VERSION : 0
41
41
VERSIONING_SYSTEM : " apple-generic"
42
42
DEBUG_INFORMATION_FORMAT : dwarf-with-dsym
You can’t perform that action at this time.
0 commit comments