Skip to content

Commit 2dfe03e

Browse files
Merge pull request #6 from uncovertruth/master
Bumped version number to 0.10
2 parents c5694f7 + 2ed8c87 commit 2dfe03e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ Contributors
108108

109109
Changelog
110110
---------
111+
- 0.10 Added testing support for Python 3.5 and Django 1.9.
111112
- 0.9 Corrected a bug to where ``time_override`` caused invalid date due to not converting to the correct timezone first. Refactored conversion code. Added testing support for Django 1.8. Removed Django from setup requirements - the onus of having a supported version of Django is on the developer.
112113
- 0.8 Corrected a bug to where ``time_override`` caused invalid date due to not converting to the correct timezone first. Added choices ``GROUPED_ALL_TIMEZONES_CHOICES`` and ``GROUPED_COMMON_TIMEZONES_CHOICES`` to the documentation.
113114
- 0.7 Corrected a bug where datetime.max.time() resulted in incorrect date/time. Changed tests to compare time_override models via string to prevent future regressions. Added choices ``GROUPED_ALL_TIMEZONES_CHOICES`` and ``GROUPED_COMMON_TIMEZONES_CHOICES``.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '0.8'
54+
version = '0.10'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.8'
56+
release = '0.10'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

timezone_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = (0, 9)
1+
__version__ = (0, 10)
22
VERSION = '.'.join(map(str, __version__))

0 commit comments

Comments
 (0)