Skip to content

Commit 7d63680

Browse files
committed
Version bump.
1 parent 91cb612 commit 7d63680

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

README.rst

+5-7
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ robust as `Vagrant <http://www.vagrantup.com>`__.
4040
If you add ``marrow.mongo`` to the ``install_requires`` argument of the call to ``setup()`` in your application's
4141
``setup.py`` file, marrow.mongo will be automatically installed and made available when your own application or
4242
library is installed. We recommend using "less than" version numbers to ensure there are no unintentional
43-
side-effects when updating. Use ``marrow.mongo<1.1`` to get all bugfixes for the current release, and
43+
side-effects when updating. Use ``marrow.mongo<1.2`` to get all bugfixes for the current release, and
4444
``marrow.mongo<2.0`` to get bugfixes and feature updates while ensuring that large breaking changes are not installed.
4545

4646
This package has a few dependencies:
@@ -214,10 +214,8 @@ variable name to make repeated reference easier.
214214
Version History
215215
===============
216216

217-
Version 1.0
218-
-----------
219-
220-
* Initial release.
217+
To see the complete version history, including detailed per-version change logs, please see the `GitHub Releases
218+
<https://github.com/marrow/mongo/releases/latest>`__ section.
221219

222220

223221
License
@@ -283,12 +281,12 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
283281
:target: https://github.com/marrow/mongo/issues
284282
:alt: Github Issues
285283

286-
.. |ghsince| image:: https://img.shields.io/github/commits-since/marrow/mongo/1.0.0.svg
284+
.. |ghsince| image:: https://img.shields.io/github/commits-since/marrow/mongo/1.1.0.svg
287285
:target: https://github.com/marrow/mongo/commits/develop
288286
:alt: Changes since last release.
289287

290288
.. |ghtag| image:: https://img.shields.io/github/tag/marrow/mongo.svg
291-
:target: https://github.com/marrow/mongo/tree/1.0.0
289+
:target: https://github.com/marrow/mongo/tree/1.1.0
292290
:alt: Latest Github tagged release.
293291

294292
.. |latestversion| image:: http://img.shields.io/pypi/v/marrow.mongo.svg?style=flat

marrow/mongo/core/release.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from collections import namedtuple
88

9-
version_info = namedtuple('version_info', ('major', 'minor', 'micro', 'releaselevel', 'serial'))(1, 0, 0, 'final', 0)
9+
version_info = namedtuple('version_info', ('major', 'minor', 'micro', 'releaselevel', 'serial'))(1, 1, 0, 'final', 0)
1010
version = ".".join([str(i) for i in version_info[:3]]) + \
1111
((version_info.releaselevel[0] + str(version_info.serial)) if version_info.releaselevel != 'final' else '')
1212

0 commit comments

Comments
 (0)