Skip to content

Commit 58964e4

Browse files
authored
Prepare release (#191)
* update version * update changelog * updated version in podspec and readme * update makefile
1 parent abd3e5c commit 58964e4

File tree

6 files changed

+23
-6
lines changed

6 files changed

+23
-6
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
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+
118
## 7.2.1 SelectableItem fixes and minor improvements
219
### Added
320
- `didDeselectEvent` to `SelectableItem`

Example/targets/template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ targetTemplates:
3434
settings:
3535
base:
3636
PRODUCT_BUNDLE_IDENTIFIER: ${bundle_id}
37-
MARKETING_VERSION: "7.2.1"
37+
MARKETING_VERSION: "7.3"
3838
CURRENT_PROJECT_VERSION: 0
3939
VERSIONING_SYSTEM: "apple-generic"
4040
DEBUG_INFORMATION_FORMAT: dwarf-with-dsym

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ update_version:
6969

7070
## Lint lib for cocoapods
7171
lint_lib:
72-
pod lib lint --allow-warnings
72+
bundle exec pod lib lint --allow-warnings
7373

7474
## Publish Lib in cocoapods
7575
publish_lib:
76-
pod trunk push --allow-warnings
76+
bundle exec pod trunk push --allow-warnings
7777

7878
## Colors
7979
GREEN := $(shell tput -Txterm setaf 2)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ You can check more examples in our [example project](/Example/) or in full [docu
129129
Just add ReactiveDataDisplayManager to your `Podfile` like this
130130

131131
```
132-
pod 'ReactiveDataDisplayManager' ~> 7.2.1
132+
pod 'ReactiveDataDisplayManager' ~> 7.3
133133
```
134134

135135
## Changelog

ReactiveDataDisplayManager.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "ReactiveDataDisplayManager"
3-
s.version = "7.2.1"
3+
s.version = "7.3"
44
s.summary = "Library with custom events and reusable adapter for scrollable UI Collections"
55
s.homepage = "https://github.com/surfstudio/ReactiveDataDisplayManager"
66
s.license = "MIT"

project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ targets:
3636
settings:
3737
base:
3838
PRODUCT_BUNDLE_IDENTIFIER: ru.surfstudio.rddm
39-
MARKETING_VERSION: "7.2.1"
39+
MARKETING_VERSION: "7.3"
4040
CURRENT_PROJECT_VERSION: 0
4141
VERSIONING_SYSTEM: "apple-generic"
4242
DEBUG_INFORMATION_FORMAT: dwarf-with-dsym

0 commit comments

Comments
 (0)