Skip to content

Commit 84c7901

Browse files
author
Michael Barr
committed
Version bump to 0.3, status to beta.
1 parent a1f5f6e commit 84c7901

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,26 @@ Django Timezone Utils: Time Zone Utilities For Models
1616
.. image:: https://landscape.io/github/michaeljohnbarr/django-timezone-utils/master/landscape.png
1717
:target: https://landscape.io/github/michaeljohnbarr/django-timezone-utils
1818
:alt: Code Health
19-
19+
2020
.. image:: https://pypip.in/py_versions/django-timezone-utils/badge.svg?style=flat
2121
:target: https://pypi.python.org/pypi/django-timezone-utils/
2222
:alt: Supported Python versions
23-
23+
2424
.. image:: https://pypip.in/license/django-timezone-utils/badge.svg?style=flat
2525
:target: https://pypi.python.org/pypi/django-timezone-utils/
2626
:alt: License
27-
27+
2828
.. image:: https://pypip.in/status/django-timezone-utils/badge.svg?style=flat
2929
:target: https://pypi.python.org/pypi/django-timezone-utils/
3030
:alt: Development Status
31-
31+
3232

3333

3434
**django-timezone-utils** adds automatic time zone conversions and support
3535
utilities to Django.
3636

3737
Please note that this project is currently marked as a development status of
38-
*Alpha*. Suggestions, constructive criticism, and feedback are certainly
38+
*Beta*. Suggestions, constructive criticism, and feedback are certainly
3939
welcomed and appreciated.
4040

4141
Installation
@@ -144,7 +144,7 @@ the database:
144144
145145
# LocationReportingPeriod.start
146146
datetime.datetime(2015, 1, 1, 0, 0, tzinfo=<DstTzInfo 'US/Eastern' EST-1 day, 19:00:00 STD>)
147-
147+
148148
# LocationReportingPeriod.end
149149
datetime.datetime(2015, 1, 1, 23, 59, 59, 999999, tzinfo=<DstTzInfo 'US/Eastern' EST-1 day, 19:00:00 STD>)
150150
@@ -156,10 +156,10 @@ database. For example, if your application's settings.TIME_ZONE is set to
156156
``UTC``, you would get back:
157157

158158
.. code-block:: python
159-
159+
160160
print(period.start)
161161
datetime.datetime(2015, 1, 1, 5, 0, tzinfo=<UTC>)
162-
162+
163163
print(period.end)
164164
datetime.datetime(2015, 1, 2, 4, 59, 59, 999999, tzinfo=<UTC>)
165165

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
platforms='any',
2828
include_package_data=True,
2929
classifiers=[
30-
'Development Status :: 3 - Alpha',
30+
'Development Status :: 4 - Beta',
3131
'Framework :: Django',
3232
'Intended Audience :: Developers',
3333
'License :: OSI Approved :: MIT License',

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, 2)
1+
__version__ = (0, 3)
22
VERSION = '.'.join(map(str, __version__))

0 commit comments

Comments
 (0)