Skip to content

Commit

Permalink
Bump version to v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msiemens committed Apr 25, 2016
1 parent b0ed6bf commit 74bd86a
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.rst
Expand Up @@ -163,6 +163,17 @@ extensions: Contributions to TinyDB are welcome! Here's how to get started:
Changelog
*********

**v3.2.0** (2016-04-25)
=======================

- Add a way to specify the default table name via `default_table <http://tinydb.readthedocs.org/en/v3.2.0/usage.html#default_table>`_
(see `pull request #98 <https://github.com/msiemens/tinydb/pull/98>`_).
- Add ``db.purge_table(name)`` to remove a single table
(see `pull request #100 <https://github.com/msiemens/tinydb/pull/100>`_).
- Along the way: celebrating 100 issues and pull requests! Thanks
everyone for every single contribution!
- Extend API documentation (see `issue #96 <https://github.com/msiemens/tinydb/issues/96>`_).

**v3.1.3** (2016-02-14)
=======================

Expand Down
12 changes: 12 additions & 0 deletions docs/changelog.rst
Expand Up @@ -7,6 +7,18 @@ Version Numbering
TinyDB follows the SemVer versioning guidelines. For more information,
see `semver.org <http://semver.org/>`_

**v3.2.0** (2016-04-25)
^^^^^^^^^^^^^^^^^^^^^^^

- Add a way to specify the default table name via :ref:`default_table <default_table>`
(see `pull request #98 <https://github.com/msiemens/tinydb/pull/98>`_).
- Add ``db.purge_table(name)`` to remove a single table
(see `pull request #100 <https://github.com/msiemens/tinydb/pull/100>`_).

- Along the way: celebrating 100 issues and pull requests! Thanks everyone for every single contribution!

- Extend API documentation (see `issue #96 <https://github.com/msiemens/tinydb/issues/96>`_).

**v3.1.3** (2016-02-14)
^^^^^^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 2 additions & 0 deletions docs/usage.rst
Expand Up @@ -350,6 +350,8 @@ Finally, you can get a list with the names of all tables in your database:
>>> db.tables()
{'_default', 'table_name'}

.. _default_table:

Default Table
.............

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -11,7 +11,7 @@ def read(fname):

setup(
name="tinydb",
version="3.1.3",
version="3.2.0",
packages=find_packages(),

# development metadata
Expand Down

0 comments on commit 74bd86a

Please sign in to comment.