Skip to content

Commit

Permalink
release 9.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xrotwang committed May 13, 2022
1 parent a6cfd44 commit 615772f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Expand Up @@ -5,6 +5,10 @@ Changes
unreleased
~~~~~~~~~~


9.1.0
~~~~~

- Dropped support for py3.6.
- Removed per-table download buttons.

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -51,10 +51,10 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = '9.0.3.dev0'
release = '9.1.0'

# The short X.Y version.
version = '9.0.3.dev0'
version = '9.1.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -3,7 +3,7 @@

setup(
name='clld',
version='9.0.3.dev0',
version='9.1.0',
description=(
'Python library supporting the development of cross-linguistic databases'),
long_description=open('README.md').read(),
Expand Down
2 changes: 1 addition & 1 deletion src/clld/__init__.py
Expand Up @@ -3,7 +3,7 @@
from clld.db.models import common
from clld import interfaces

__version__ = "9.0.3.dev0"
__version__ = "9.1.0"


class Resource(collections.namedtuple('Resource', 'name model interface with_index with_rdfdump')):
Expand Down

0 comments on commit 615772f

Please sign in to comment.