diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e5b1e6fa9c40764234fe2f7d46c55b2eb1b6b6dd..b332d2230d3c1cba07fe28eeb4ede222fb98900b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.3 +current_version = 0.0.4 commit = False tag = False diff --git a/docs/conf.py b/docs/conf.py index f244d530122e00004dd6430a98162ba5eb549c54..6a434e450c259e8b3bf557c3357ea18b86fd92f0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ project = u'APEX' year = '2016' author = u'Jeffrey Phillips Freeman (WI2ARD)' copyright = '{0}, {1}'.format(year, author) -version = release = u'0.0.3' +version = release = u'0.0.4' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 0e23323b9c7c9b4c47fc0949f5e767a45245c2b9..7dcf3bf11bd3902526a983a61f9899b77ab42c5a 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def read(*names, **kwargs): setup( name='apex-radio', - version='0.0.3', + version='0.0.4', license='Apache Software License', description='APEX reference implementation.', long_description='%s\n%s' % ( @@ -39,7 +39,7 @@ setup( author='Jeffrey Phillips Freeman (WI2ARD)', author_email='jeffrey.freeman@syncleus.com', url='http://ApexProtocol.com', - download_url='https://github.com/Syncleus/apex/archive/v0.0.3.tar.gz', + download_url='https://github.com/Syncleus/apex/archive/v0.0.4.tar.gz', packages=find_packages('src'), package_dir={'': 'src'}, py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')], diff --git a/src/apex/__init__.py b/src/apex/__init__.py index 0d345049ab1ea379b7b92b9d30bee2b06582746b..4e0c3c322e33ff5810c76def4e95c90ce9b1a71f 100644 --- a/src/apex/__init__.py +++ b/src/apex/__init__.py @@ -13,4 +13,4 @@ __email__ = 'jeffrey.freeman@syncleus.com' __license__ = 'Apache License, Version 2.0' __copyright__ = 'Copyright 2016, Syncleus, Inc. and contributors' __credits__ = [] -__version__ = '0.0.3' +__version__ = '0.0.4' diff --git a/src/apex/aprs/__init__.py b/src/apex/aprs/__init__.py index 5f99ababb8eeab43092824e391a2fee9189a8421..7d820ae30a16fec92c738ded3225db6916ce277c 100644 --- a/src/apex/aprs/__init__.py +++ b/src/apex/aprs/__init__.py @@ -32,7 +32,7 @@ __email__ = 'jeffrey.freeman@syncleus.com' __license__ = 'Apache License, Version 2.0' __copyright__ = 'Copyright 2016, Syncleus, Inc. and contributors' __credits__ = [] -__version__ = '0.0.3' +__version__ = '0.0.4' # Set default logging handler to avoid "No handler found" warnings. try: # Python 2.7+ diff --git a/src/apex/kiss/__init__.py b/src/apex/kiss/__init__.py index be7606d30a9a5c7be07467763f90421dd04d5e54..1662b419cb908b371ef3f929e2f4d90e8c020175 100644 --- a/src/apex/kiss/__init__.py +++ b/src/apex/kiss/__init__.py @@ -31,7 +31,7 @@ __email__ = 'jeffrey.freeman@syncleus.com' __license__ = 'Apache License, Version 2.0' __copyright__ = 'Copyright 2016, Syncleus, Inc. and contributors' __credits__ = [] -__version__ = '0.0.3' +__version__ = '0.0.4' # Set default logging handler to avoid "No handler found" warnings. diff --git a/src/apex/plugins/apexparadigm/__init__.py b/src/apex/plugins/apexparadigm/__init__.py index 4fd702cd5312edd57327eba4a7a9d79824f93a42..675a166391cd39a1611f4e3d36144745a0355307 100644 --- a/src/apex/plugins/apexparadigm/__init__.py +++ b/src/apex/plugins/apexparadigm/__init__.py @@ -15,7 +15,7 @@ __email__ = 'jeffrey.freeman@syncleus.com' __license__ = 'Apache License, Version 2.0' __copyright__ = 'Copyright 2016, Syncleus, Inc. and contributors' __credits__ = [] -__version__ = '0.0.3' +__version__ = '0.0.4' plugin = None diff --git a/src/apex/plugins/beacon/__init__.py b/src/apex/plugins/beacon/__init__.py index d7e950023ede4832eec342ae3b22333ddb673f1c..9dcbe0c56595fd53b9461eac27ce676a6aaa5098 100644 --- a/src/apex/plugins/beacon/__init__.py +++ b/src/apex/plugins/beacon/__init__.py @@ -14,7 +14,7 @@ __email__ = 'jeffrey.freeman@syncleus.com' __license__ = 'Apache License, Version 2.0' __copyright__ = 'Copyright 2016, Syncleus, Inc. and contributors' __credits__ = [] -__version__ = '0.0.3' +__version__ = '0.0.4' plugin = None diff --git a/src/apex/plugins/id/__init__.py b/src/apex/plugins/id/__init__.py index 2e508cfafc30097fe68220d3e9f84dbc21ccca8e..7b240880266745f3c7716b3850eb1af398b364a5 100644 --- a/src/apex/plugins/id/__init__.py +++ b/src/apex/plugins/id/__init__.py @@ -14,7 +14,7 @@ __email__ = 'jeffrey.freeman@syncleus.com' __license__ = 'Apache License, Version 2.0' __copyright__ = 'Copyright 2016, Syncleus, Inc. and contributors' __credits__ = [] -__version__ = '0.0.3' +__version__ = '0.0.4' plugin = None diff --git a/src/apex/plugins/status/__init__.py b/src/apex/plugins/status/__init__.py index c5278c354f4dc17708563d16051b84a396cddd4d..d88dfa8f8686d878ea5f521bde84dbfd35b92970 100644 --- a/src/apex/plugins/status/__init__.py +++ b/src/apex/plugins/status/__init__.py @@ -13,7 +13,7 @@ __email__ = 'jeffrey.freeman@syncleus.com' __license__ = 'Apache License, Version 2.0' __copyright__ = 'Copyright 2016, Syncleus, Inc. and contributors' __credits__ = [] -__version__ = '0.0.3' +__version__ = '0.0.4' plugin = None