Skip to content

Commit 1bbadb5

Browse files
committed
Increase version to 445
1 parent 9f5db4f commit 1bbadb5

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## Unreleased
8-
- Notification GUID details - also created_at
8+
9+
## 1.1.445
10+
## 1.1.444
11+
## 1.1.443
12+
- DREF final report
913
- Flash update notification
14+
- Notification GUID details - showing "created_at"
1015
- Real_data_update date comparison to appeal endpoint
1116
- Rich Text Editor enhancements
1217
- Adding Notes to AppealFilter
@@ -1997,7 +2002,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
19972002

19982003
## 0.1.20
19992004

2000-
[Unreleased]: https://github.com/IFRCGo/go-api/compare/1.1.442...HEAD
2005+
[Unreleased]: https://github.com/IFRCGo/go-api/compare/1.1.445...HEAD
2006+
[1.1.445]: https://github.com/IFRCGo/go-api/compare/1.1.444...1.1.445
2007+
[1.1.444]: https://github.com/IFRCGo/go-api/compare/1.1.443...1.1.444
2008+
[1.1.443]: https://github.com/IFRCGo/go-api/compare/1.1.442...1.1.443
20012009
[1.1.442]: https://github.com/IFRCGo/go-api/compare/1.1.441...1.1.442
20022010
[1.1.441]: https://github.com/IFRCGo/go-api/compare/1.1.440...1.1.441
20032011
[1.1.440]: https://github.com/IFRCGo/go-api/compare/1.1.439...1.1.440

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.442'
6+
__version__ = '1.1.445'

main/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
url(r'^api/v2/event/(?P<pk>\d+)', api_views.EventViewset.as_view({'get': 'retrieve'})),
199199
url(r'^api/v2/event/(?P<slug>[-\w]+)', api_views.EventViewset.as_view({'get': 'retrieve'}, lookup_field='slug')),
200200
url(r'^api/v2/exportperresults/', per_views.ExportAssessmentToCSVViewset.as_view()),
201-
url(r'^docs/', include_docs_urls(title='IFRC Go API', public=False)),
201+
url(r'^docs/', include_docs_urls(title='IFRC GO API', public=False)),
202202
url(r'^tinymce/', include('tinymce.urls')),
203203
url(r'^admin/', RedirectView.as_view(url='/')),
204204
# url(r'^', admin.site.urls),

0 commit comments

Comments
 (0)