File tree 4 files changed +21
-3
lines changed
4 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1
1
- Piet Delport
2
2
- Riccardo Magliocchetti
3
- - mpasternak
3
+ - Mike Mepham
4
4
- Murph Murphy
5
+ - Michał Pasternak
5
6
- James Pic
7
+ - Jeff Rudokas
6
8
- Aaron VanDerlip @aaronvanderlip
Original file line number Diff line number Diff line change
1
+ 2013-07-30 2.0.9
2
+
3
+ Awesome contributions were merged:
4
+
5
+ - Fixed bug in city migration where if there were two cities in the same
6
+ country with the same name only the first would be imported. This was due
7
+ to not taking into account the region checking for the records existence
8
+ before creating a new one.
9
+ - Increase performance by caching region_id and country_id in migration
10
+ function variables.
11
+ - Added debugging flag '--verify-city-import' which cerifies city import
12
+ and print out missing cities. For debug purposes only.
13
+ - Fixed bug in city migration where if the name_ascii field is null it
14
+ would set the slug name as 'city.' It now sets it to the geoname_id.
15
+ - Added to AUTHORS: Mike Mepham, Jeff Rudokas
16
+
1
17
2013-06-26 2.0.8
2
18
3
19
- Merge #22: ugettext_lazy instead of ugettext.
Original file line number Diff line number Diff line change 66
66
# The short X.Y version.
67
67
version = '2.0'
68
68
# The full version, including alpha/beta/rc tags.
69
- release = '2.0.8 '
69
+ release = '2.0.9 '
70
70
71
71
# The language for content autogenerated by Sphinx. Refer to documentation
72
72
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def read(fname):
10
10
11
11
setup (
12
12
name = 'django-cities-light' ,
13
- version = '2.0.8 ' ,
13
+ version = '2.0.9 ' ,
14
14
description = 'Simple alternative to django-cities' ,
15
15
author = 'James Pic' ,
16
16
You can’t perform that action at this time.
0 commit comments