Skip to content

Commit

Permalink
Release v1.1b1
Browse files Browse the repository at this point in the history
  • Loading branch information
seddonym committed Nov 24, 2019
1 parent b1e449c commit ca57612
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ Changelog

* Officially support Python 3.8.

latest
------
1.1b1 (2019-11-24)
------------------

* Provide debug mode.
* Allow contracts to mutate the graph without affecting other contracts.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '1.0'
release = '1.1b1'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read(*names, **kwargs):

setup(
name="import-linter",
version="1.0",
version="1.1b1",
license="BSD 2-Clause License",
description="Enforces rules for the imports within and between Python packages.",
long_description=read("README.rst"),
Expand All @@ -34,7 +34,7 @@ def read(*names, **kwargs):
zip_safe=False,
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: Unix",
Expand Down
2 changes: 1 addition & 1 deletion src/importlinter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0"
__version__ = "1.1b1"

from .application import output # noqa
from .domain import fields # noqa
Expand Down

0 comments on commit ca57612

Please sign in to comment.