Skip to content

Commit

Permalink
release 9.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xrotwang committed Jul 6, 2022
1 parent d3ebd54 commit 10e49e1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ unreleased
~~~~~~~~~~


9.2.1
~~~~~

- Don't advertise sourceMappingURL in javascript if this URL doesn't exist.


9.2.0
~~~~~

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

# The short X.Y version.
version = '9.2.1.dev0'
version = '9.2.1'

# 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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='clld',
version='9.2.1.dev0',
version='9.2.1',
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from clld.db.models import common
from clld import interfaces

__version__ = "9.2.1.dev0"
__version__ = "9.2.1"


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

0 comments on commit 10e49e1

Please sign in to comment.