diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b4d85e..b7d4193 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented. If you have any updates By import convention, components of the ScirisWeb library are listed beginning with `sw.`, e.g. `sw.ScirisApp()`. +## Version 1.0.1 (2024-08-20) +1. Update to work with Flask 3. + ## Version 1.0.0 (2023-12-13) 1. Updated to work with current versions of Python and JavaScript libraries. 2. Added CORS option (required for serving via React). diff --git a/scirisweb/sw_version.py b/scirisweb/sw_version.py index 9f2d8ec..e3c6078 100644 --- a/scirisweb/sw_version.py +++ b/scirisweb/sw_version.py @@ -1,5 +1,5 @@ __all__ = ['__version__', '__versiondate__', '__license__'] -__version__ = '1.0.0' -__versiondate__ = '2023-12-13' +__version__ = '1.0.1' +__versiondate__ = '2024-08-20' __license__ = 'ScirisWeb %s (%s) -- (c) Sciris.org' % (__version__, __versiondate__)