Skip to content

Commit c0f5ffc

Browse files
authored
Merge pull request #317 from joke2k/feature/bump-version
Bump version
2 parents 2301531 + c774c7b commit c0f5ffc

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

CHANGELOG.rst

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is *inspired* by `Keep a Changelog <http://keepachangelog.com/en/1.0.0/>`_
66
and this project adheres to `Semantic Versioning <http://semver.org/spec/v2.0.0.html>`_.
77

8+
`v0.7.0`_ - 00-Unreleased-2021
9+
------------------------------
10+
Changed
11+
+++++++
12+
- Added 'Funding' and 'Say Thanks!' project urls on pypi.
13+
14+
815
`v0.6.0`_ - 4-September-2021
916
----------------------------
1017
Added
@@ -160,14 +167,14 @@ Changed
160167
+++++++
161168
- Rewriting README.rst
162169

163-
v0.2.1 19-April-2013
164-
--------------------
170+
v0.2.1 - 19-April-2013
171+
----------------------
165172
Changed
166173
+++++++
167174
- ``Env.__call__`` now uses ``Env.get_value`` instance method
168175

169-
v0.2 16-April-2013
170-
------------------
176+
v0.2 - 16-April-2013
177+
--------------------
171178
Added
172179
+++++
173180
- Add advanced float parsing (comma and dot symbols to separate thousands and decimals)
@@ -176,14 +183,15 @@ Fixed
176183
+++++
177184
- Fixed typos in the documentation
178185

179-
v0.1 2-April-2013
180-
-----------------
186+
v0.1 - 2-April-2013
187+
-------------------
181188
Added
182189
+++++
183190
- Initial release
184191

185192

186-
.. _v0.6.0: https://github.com/joke2k/django-environ/compare/v0.5.0...develop
193+
.. _v0.7.0: https://github.com/joke2k/django-environ/compare/v0.6.0...develop
194+
.. _v0.6.0: https://github.com/joke2k/django-environ/compare/v0.5.0...v0.6.0
187195
.. _v0.5.0: https://github.com/joke2k/django-environ/compare/v0.4.5...v0.5.0
188196
.. _v0.4.5: https://github.com/joke2k/django-environ/compare/v0.4.4...v0.4.5
189197
.. _v0.4.4: https://github.com/joke2k/django-environ/compare/v0.4.3...v0.4.4

environ/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232

3333
__copyright__ = 'Copyright (C) 2021 Daniele Faraglia'
34-
__version__ = '0.6.0'
34+
__version__ = '0.7.0'
3535
__license__ = 'MIT'
3636
__author__ = 'Daniele Faraglia'
3737
__author_email__ = '[email protected]'

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,9 @@ def get_version_string():
187187

188188
# Project's URLs
189189
PROJECT_URLS = {
190-
'Documentation': 'https://django-environ.readthedocs.io',
190+
'Documentation': find_meta('url'),
191+
'Funding': 'https://opencollective.com/django-environ',
192+
'Say Thanks!': 'https://saythanks.io/to/joke2k',
191193
'Changelog': '{}/en/latest/changelog.html'.format(find_meta('url')),
192194
'Bug Tracker': 'https://github.com/joke2k/django-environ/issues',
193195
'Source Code': 'https://github.com/joke2k/django-environ',

0 commit comments

Comments
 (0)