diff --git a/CHANGES.rst b/CHANGES.rst index b8f4920f..a647b897 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,18 @@ Changes ======= +0.50.0 +------ + +Catching more database errors in ``PiccoloCRUD``, and returning useful API +responses instead of 500 errors. + +Implemented GitHub's CodeQL suggestions - this now means ``LocalMediaStorage`` +uses ``600`` instead of ``640`` as the default file permissions for uploaded +files (thanks to @sinisaos for this). + +------------------------------------------------------------------------------- + 0.49.0 ------ diff --git a/piccolo_api/__init__.py b/piccolo_api/__init__.py index 19716827..7526dda8 100644 --- a/piccolo_api/__init__.py +++ b/piccolo_api/__init__.py @@ -1 +1 @@ -__VERSION__ = "0.49.0" +__VERSION__ = "0.50.0"