From 205e2c73f997132cdeb04bac3097b2904720dfb0 Mon Sep 17 00:00:00 2001 From: Ian Mayo Date: Thu, 10 Dec 2020 14:54:16 +0000 Subject: [PATCH 1/2] Update history --- HISTORY.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 8ff25b44a..e773a7232 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,18 @@ History ======= + +0.0.24 (2020-12-10) +------------------- + +* Don't allow users to create new entries in Reference tables +* Add "training" mode, using private Pepys database +* Use bold/colored text in application +* Add "viewer" mode/app for Pepys-Admin for read-only interactions +* Add context-sensitive help for all prompts +* Copy tutorial content to user's Home folder on installation +* Lots and lots of minor usability improvements + 0.0.23 (2020-09-23) ------------------- From f697d92468c2806e6a9e8cc32d524aa7b5e54a11 Mon Sep 17 00:00:00 2001 From: Ian Mayo Date: Thu, 10 Dec 2020 14:54:19 +0000 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.0.23=20=E2=86=92=200.0.?= =?UTF-8?q?24?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pepys_import/__init__.py | 2 +- setup.cfg | 3 +-- setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pepys_import/__init__.py b/pepys_import/__init__.py index 61756ffcc..2a441eaaa 100644 --- a/pepys_import/__init__.py +++ b/pepys_import/__init__.py @@ -4,4 +4,4 @@ __author__ = "Ian Mayo" __email__ = "ian@planetmayo.com" -__version__ = "0.0.23" +__version__ = "0.0.24" diff --git a/setup.cfg b/setup.cfg index e7e18b25e..a3e291f75 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.23 +current_version = 0.0.24 commit = True tag = True @@ -30,4 +30,3 @@ omit = migrations/* [aliases] - diff --git a/setup.py b/setup.py index fff914810..b5bddbe85 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/debrief/pepys-import", - version="0.0.23", + version="0.0.24", zip_safe=False, )