Skip to content

Commit f0b4c82

Browse files
committed
Bump version: 0.4.2 → 0.5.0
1 parent e5a895c commit f0b4c82

File tree

6 files changed

+12
-13
lines changed

6 files changed

+12
-13
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.4.2
2+
current_version = 0.5.0
33
files = setup.py stagesetting/__init__.py README.rst LICENSE CHANGELOG
44
commit = True
55
tag = True

CHANGELOG

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
Change log
22
----------
3-
4-
?next?
3+
0.5.0
54
^^^^^^
65
* Minor changes to allow for easy subclassing or replacement of the middleware,
76
context processor etc.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
License
22
-------
33

4-
``django-stagesetting 0.4.2`` is available under the terms of the
4+
``django-stagesetting 0.5.0`` is available under the terms of the
55
Simplified BSD License (alternatively known as the FreeBSD License, or
66
the 2-clause License)::
77

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
django-stagesetting 0.4.2
1+
django-stagesetting 0.5.0
22
=========================
33

44
An application for managing site configuration through normal `Django`_ forms,
55
and thus through the `admin site`_.
66

7-
.. |travis_stable| image:: https://travis-ci.org/kezabelle/django-stagesetting.svg?branch=0.4.2
7+
.. |travis_stable| image:: https://travis-ci.org/kezabelle/django-stagesetting.svg?branch=0.5.0
88
:target: https://travis-ci.org/kezabelle/django-stagesetting
99

1010
.. |travis_master| image:: https://travis-ci.org/kezabelle/django-stagesetting.svg?branch=master
@@ -13,7 +13,7 @@ and thus through the `admin site`_.
1313
============== ======
1414
Release Status
1515
============== ======
16-
stable (0.4.2) |travis_stable|
16+
stable (0.5.0) |travis_stable|
1717
master |travis_master|
1818
============== ======
1919

@@ -30,7 +30,7 @@ Installation
3030

3131
First up, you need to install it (via `pip`_ as usual)::
3232

33-
pip install django-stagesetting==0.4.2
33+
pip install django-stagesetting==0.5.0
3434

3535
Once that's downloaded, add the package to your ``INSTALLED_APPS``
3636
in your settings::

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def make_readme(root_path):
4242

4343
setup(
4444
name='django-stagesetting',
45-
version='0.4.2',
45+
version='0.5.0',
4646
packages=find_packages(exclude=['tests', 'test_app']),
4747
install_requires=(
4848
'Django>=1.7',
@@ -68,7 +68,7 @@ def make_readme(root_path):
6868
keywords=['settings', 'django', 'live', 'dynamic', 'utility'],
6969
include_package_data=True,
7070
url='https://github.com/kezabelle/django-stagesetting',
71-
download_url='https://github.com/kezabelle/django-stagesetting/releases/tag/0.4.2',
71+
download_url='https://github.com/kezabelle/django-stagesetting/releases/tag/0.5.0',
7272
zip_safe=False,
7373
license="BSD License",
7474
classifiers=[

stagesetting/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
2-
__version_info__ = '0.4.2'
3-
__version__ = '0.4.2'
4-
version = '0.4.2'
2+
__version_info__ = '0.5.0'
3+
__version__ = '0.5.0'
4+
version = '0.5.0'
55
def get_version(): return version # pragma: no cover
66

77
default_app_config = 'stagesetting.apps.StageSettingAppConfig'

0 commit comments

Comments
 (0)