From d9a40e49b90eb13e3bab31a2b9277f5f6f76025d Mon Sep 17 00:00:00 2001 From: dgw Date: Sun, 11 Sep 2016 02:10:53 -0500 Subject: [PATCH 1/2] Request that pip not install wolframalpha 3.0 yet (see #5) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ef0ec9d..7ef6321 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ sopel>=6.0,<7 -wolframalpha>=2.0 +wolframalpha>=2.0,<3.0 From a10e7520526345b83592fb6b802604ac27eb10da Mon Sep 17 00:00:00 2001 From: dgw Date: Sun, 11 Sep 2016 02:12:59 -0500 Subject: [PATCH 2/2] Bump to version 0.2.1 for bugfix release (see #5) --- .bumpversion.cfg | 2 +- NEWS | 5 +++-- setup.py | 2 +- sopel_modules/wolfram/__init__.py | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ee25206..d74c853 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1-dev +current_version = 0.2.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/NEWS b/NEWS index 30e309c..06ed95f 100644 --- a/NEWS +++ b/NEWS @@ -4,12 +4,13 @@ Changelog Ticket numbers in changelog entries can be looked up by visiting ``https://github.com/dgw/sopel-wolfram/issue/`` -Unreleased ----------- +sopel-wolfram v0.2.1 +-------------------- Updates: * Output now split into multiple messages when line breaks are present (#4) +* Tell pip we do not want wolframalpha 3.0 yet (#6) sopel-wolfram v0.2.0 -------------------- diff --git a/setup.py b/setup.py index 76d8016..2231e36 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name='sopel_modules.wolfram', - version='0.2.1-dev', + version='0.2.1', description='Wolfram|Alpha module for Sopel IRC bot framework', long_description=readme + '\n\n' + history, author='Max Gurela', diff --git a/sopel_modules/wolfram/__init__.py b/sopel_modules/wolfram/__init__.py index 689fa26..22aa37d 100644 --- a/sopel_modules/wolfram/__init__.py +++ b/sopel_modules/wolfram/__init__.py @@ -9,5 +9,5 @@ __author__ = 'Max Gurela' __email__ = 'maxpowa1@gmail.com' -__version__ = '0.2.1-dev' +__version__ = '0.2.1'