Skip to content

Commit 7b11b76

Browse files
authored
Merge pull request #1863 from IFRCGo/master
Master -> Develop
2 parents 653ec15 + 1ff50c9 commit 7b11b76

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## Unreleased
88

9+
## 1.1.485
10+
11+
### Added
12+
- Add disaster_type details in dref final report
13+
914
## 1.1.484
1015

1116
### Added
@@ -2267,7 +2272,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
22672272

22682273
## 0.1.20
22692274

2270-
[Unreleased]: https://github.com/IFRCGo/go-api/compare/1.1.484...HEAD
2275+
[Unreleased]: https://github.com/IFRCGo/go-api/compare/1.1.485...HEAD
2276+
[1.1.485]: https://github.com/IFRCGo/go-api/compare/1.1.484...1.1.485
22712277
[1.1.484]: https://github.com/IFRCGo/go-api/compare/1.1.483...1.1.484
22722278
[1.1.483]: https://github.com/IFRCGo/go-api/compare/1.1.482...1.1.483
22732279
[1.1.482]: https://github.com/IFRCGo/go-api/compare/1.1.481...1.1.482

dref/serializers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -915,6 +915,7 @@ class DrefFinalReportSerializer(NestedUpdateMixin, NestedCreateMixin, ModelSeria
915915
created_by_details = UserNameSerializer(source="created_by", read_only=True)
916916
users_details = UserNameSerializer(source="users", many=True, read_only=True)
917917
modified_by_details = UserNameSerializer(source="modified_by", read_only=True)
918+
disaster_type_details = DisasterTypeSerializer(source="disaster_type", read_only=True)
918919

919920
class Meta:
920921
model = DrefFinalReport

main/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from .celery import app as celery_app
44

55
__all__ = ['celery_app']
6-
__version__ = '1.1.484'
6+
__version__ = '1.1.485'

0 commit comments

Comments
 (0)