Skip to content

Commit

Permalink
Release v1.0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
seddonym committed Apr 6, 2019
1 parent 270c0e5 commit 9190231
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Changelog
* Include the ability to build the graph with external packages.


latest
------
1.0b1 (2019-4-6)
----------------

* Improve error handling of modules/containers not in the graph.
* Return the exit code correctly.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '1.0a3'
release = '1.0b1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def read(*names, **kwargs):

setup(
name='import-linter',
version='1.0a3',
version='1.0b1',
license='BSD 2-Clause License',
description="Enforces rules for the internal and external imports within your Python project.",
long_description=read('README.rst'),
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.0a3'
__version__ = '1.0b1'

from .domain.contract import Contract, ContractCheck # noqa
from .domain import fields # noqa
Expand Down

0 comments on commit 9190231

Please sign in to comment.