Skip to content

Commit

Permalink
Release v1.0a3
Browse files Browse the repository at this point in the history
  • Loading branch information
seddonym committed Mar 27, 2019
1 parent f2aad36 commit effacc0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@ Changelog
-----------------

* First usable alpha release.


1.0a3 (2019-3-27)
-----------------

* Include the ability to build the graph with external packages.
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.0a2'
release = '1.0a3'


# -- 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.0a2',
version='1.0a3',
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.0a2'
__version__ = '1.0a3'

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

0 comments on commit effacc0

Please sign in to comment.