Skip to content

Commit

Permalink
:add: reference to module members in the main package
Browse files Browse the repository at this point in the history
  • Loading branch information
b3j0f committed Sep 22, 2015
1 parent b63e8f1 commit 682fd4f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
9 changes: 7 additions & 2 deletions b3j0f/aop/__init__.py
Expand Up @@ -30,10 +30,15 @@
"""

__all__ = [
'__version_info__', '__version__'
'__version_info__', '__version__',
'weave', 'unweave', 'get_advices', 'weave_on',
'Joinpoint', 'JoinpointError'
]

#: project version info
__version_info__ = 0, 7, 8, "beta", 0
__version_info__ = 0, 7, 9, "beta", 0
#: project version
__version__ = ".".join(str(v) for v in __version_info__[:3])

from b3j0f.aop.advice import weave, unweave, get_advices, weave_on
from b3j0f.aop.joinpoint import Joinpoint, JoinpointError
5 changes: 5 additions & 0 deletions changelog.rst
@@ -1,6 +1,11 @@
Changelog
=========

0.7.9 (22/09/2015)
------------------

- add reference to advice and joinpoint members in the main package.

0.7.8 (14/06/2015)
------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -45,7 +45,7 @@

setup(
name='b3j0f.aop',
version='0.7.8',
version='0.7.9',
install_requires=dependencies,
packages=find_packages(exclude=['test.*', '*.test.*']),
author="b3j0f",
Expand Down

0 comments on commit 682fd4f

Please sign in to comment.