diff options
author | Tobias Brox <tobias@redpill-linpro.com> | 2021-03-11 00:24:29 +0100 |
---|---|---|
committer | Tobias Brox <tobias@redpill-linpro.com> | 2021-03-11 00:24:29 +0100 |
commit | c432662d501bdf66c0a71d7193272627ac6414b1 (patch) | |
tree | d21d927edcd74ee65a7d854e9139760d6ce0c51a | |
parent | b549d70e90efe86b9601a589efd36db93235d355 (diff) | |
download | python-caldav-c432662d501bdf66c0a71d7193272627ac6414b1.zip |
ready to release 0.8. I'll call it 0.8.0-rc1 now, and do a proper release tomorrow morning
-rw-r--r-- | caldav/lib/error.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/caldav/lib/error.py b/caldav/lib/error.py index 2c38434..ebb1c0d 100644 --- a/caldav/lib/error.py +++ b/caldav/lib/error.py @@ -10,7 +10,7 @@ try: debugmode = os.environ['PYTHON_CALDAV_DEBUGMODE'] except: ## TODO: the default value here should be set to PRODUCTION prior to release - debugmode = 'DEVELOPMENT' + debugmode = 'PRODUCTION' log = logging.getLogger('caldav') if debugmode.startswith('DEBUG'): @@ -4,7 +4,7 @@ from setuptools import setup, find_packages import sys ## ATTENTION! when doing releases, the default debugmode in lib/error.py should be set to PRODUCTION. -version = '0.8.0pre' +version = '0.8.0-rc1' ## (TODO: any nicer ways than doing this manually? Make a "releases" branch, maybe?) if __name__ == '__main__': |