Update changelog

This commit is contained in:
Dmitriy Sokolov 2018-12-05 09:54:10 +03:00
parent 6f2138177a
commit c91f83d464
No known key found for this signature in database
GPG Key ID: DE2C98901898AB74
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
0.3.10 (2018-12-05)
- Fix calendar position on mobile (#23)
0.3.9 (2018-10-31)
- Fix calendar icons displayed for Django 2.1

View File

@ -9,7 +9,7 @@ from setuptools import setup
def get_version(package):
init_py = open(os.path.join(package, '__init__.py')).read()
return re.search("__version__ = ['\"]([^'\"]+)['\"]", init_py).group(1)
return re.search('__version__ = [\'"]([^\'"]+)[\'"]', init_py).group(1)
def get_packages(package):