From fd1c837584f320e5d12896b65f3b7f2bf9e3117f Mon Sep 17 00:00:00 2001 From: Ryan Currah Date: Tue, 5 Jun 2018 10:11:36 -0400 Subject: [PATCH] release 0.3.1 with markdown support in pypi --- CHANGELOG.md | 4 ++++ README.md | 1 + run_build.sh | 0 searchsplunk/version.py | 2 +- setup.py | 4 ++-- 5 files changed, 8 insertions(+), 3 deletions(-) mode change 100644 => 100755 run_build.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fad4d8..ec738a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.3.1 (June, 5, 2018) +### Fixed +* Ensure markdown is used for pypi description + ## 0.3.0 (November, 8, 2017) ### Fixed * Prevent wasted CPU cycles on long searches by sleeping for 1 second after each result check diff --git a/README.md b/README.md index e71b0f0..e1d6fab 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,7 @@ print json.dumps(result, sort_keys=True, indent=2) ## Contributors - [pkeeper](https://github.com/pkeeper) + - [lowell80](https://github.com/lowell80) ## Author diff --git a/run_build.sh b/run_build.sh old mode 100644 new mode 100755 diff --git a/searchsplunk/version.py b/searchsplunk/version.py index 89dbadb..af4f904 100644 --- a/searchsplunk/version.py +++ b/searchsplunk/version.py @@ -1,4 +1,4 @@ """ Reports the version of the module """ -__version__ = '0.3.0' +__version__ = '0.3.1' diff --git a/setup.py b/setup.py index ccdcea9..f4759e8 100644 --- a/setup.py +++ b/setup.py @@ -10,10 +10,10 @@ setup( name='searchsplunk', - version='0.3.0', + version='0.3.1', description='Splunk search client', long_description=long_description, - long_description_content_type="text/markdown", + long_description_content_type='text/markdown', author='Ryan Currah', author_email='ryan@currah.ca', url='https://github.com/ryancurrah/searchsplunk',