Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for Flask 3 #88

Merged
merged 2 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 2+.

## 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).
Expand Down
4 changes: 2 additions & 2 deletions scirisweb/sw_version.py
Original file line number Diff line number Diff line change
@@ -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__)
Loading