diff --git a/README.md b/README.md index 56db7b2..6d11e1a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Simple python script using the [Orcid Python Library](https://github.com/ORCID/p The Orcid [public API](http://members.orcid.org/api) is used with this program. There is no support for the member API. ## Version -Version == 0.1-alpha.5 +Version == 0.1-alpha.6 ## Download & Install You can use a pip install: @@ -13,7 +13,7 @@ You can use a pip install: or download: -[https://github.com/crcresearch/orcidfind/tarball/0.1-alpha.5](https://github.com/crcresearch/orcidfind/tarball/0.1-alpha.5) +[https://github.com/crcresearch/orcidfind/tarball/0.1-alpha.6](https://github.com/crcresearch/orcidfind/tarball/0.1-alpha.6) orcidfind/find.py is a `__main__` python script and relies on orcidsearch/search.py as a module. This means that orcidsearch/search.py must be installed under site-packages for your particular Python version, or added to the PYTHONPATH. diff --git a/orcidfind/__version__.py b/orcidfind/__version__.py index 838b69a..471944e 100644 --- a/orcidfind/__version__.py +++ b/orcidfind/__version__.py @@ -3,7 +3,7 @@ # Some segments of public version identifer (PEP 440) VERSION_RELEASE = "0.1" -VERSION_PRE_RELEASE = "a.5" # e.g., "a4", "b1", "rc3" or "" (final release) +VERSION_PRE_RELEASE = "a.6" # e.g., "a4", "b1", "rc3" or "" (final release) VERSION_POST_RELEASE = "" # e.g., ".post1" VERSION = VERSION_RELEASE + VERSION_PRE_RELEASE + VERSION_POST_RELEASE diff --git a/setup.py b/setup.py index c459557..0149174 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ 'console_scripts':['orcidfind = orcidfind.find:search_type'] }, url='https://crc.nd.edu', - download_url='https://github.com/crcresearch/orcidfind/tarball/0.1-alpha.5', + download_url='https://github.com/crcresearch/orcidfind/tarball/0.1-alpha.6', platforms='Linux', license='ALv2', author='cwilli34',