Skip to content

Commit a2cb14c

Browse files
committed
bump version
1 parent 6c9a924 commit a2cb14c

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
History
33
=======
44

5+
0.0.7 (2019-5-8)
6+
----------------
7+
8+
* include subpackage
9+
* refactor util and codec
10+
511
0.0.5 (2019-5-7)
612
----------------
713

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
py-multiaddr
2-
############
2+
==========================
33

44
.. image:: https://img.shields.io/pypi/v/multiaddr.svg
55
:target: https://pypi.python.org/pypi/multiaddr

multiaddr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
__author__ = 'Steven Buss'
55
__email__ = '[email protected]'
6-
__version__ = '0.0.5'
6+
__version__ = '0.0.7'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.5
2+
current_version = 0.0.7
33
commit = True
44
tag = True
55

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
3+
import setuptools
44

55
try:
66
from setuptools import setup
@@ -16,7 +16,7 @@
1616
history = history_file.read()
1717

1818

19-
version = '0.0.5'
19+
version = '0.0.7'
2020

2121
setup(
2222
name='multiaddr',
@@ -28,9 +28,7 @@
2828
url='https://github.com/multiformats/py-multiaddr',
2929
download_url=(
3030
'https://github.com/multiformats/py-multiaddr/tarball/%s' % version),
31-
packages=[
32-
'multiaddr',
33-
],
31+
packages=setuptools.find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
3432
package_dir={'multiaddr': 'multiaddr'},
3533
include_package_data=True,
3634
license='MIT License',

0 commit comments

Comments
 (0)