diff --git a/NEWS b/NEWS index c4c5525e..b1a257a8 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,27 @@ # Releases +## sortinghat 1.0.0 - (2024-04-13) + +**New features:** + + * First major release\ + GrimoireLab reached a stable status. This is our first major release. + +**Bug fixes:** + + * Change password form fixed\ + An unused header in the UI made the attempts to change the password + fail. It tried to guess the user from an invalid JWT token when + multitenancy was enabled. + +**Dependencies updateds:** + + * Django version updated\ + Upgrade the Django version from 3.2 to 4.2. Support for Django 3.2 + ended at April 1, 2024. This change ensures compability with the + latests features and an extended support. + + ## sortinghat 0.21.2 - (2024-03-27) **Bug fixes:** diff --git a/pyproject.toml b/pyproject.toml index 77edd602..f84010ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sortinghat" -version = "1.0.0-rc.3" +version = "1.0.0" description = "A tool to manage identities." authors = [ "GrimoireLab Developers" diff --git a/releases/1.0.0.md b/releases/1.0.0.md new file mode 100644 index 00000000..29c80c30 --- /dev/null +++ b/releases/1.0.0.md @@ -0,0 +1,21 @@ +## sortinghat 1.0.0 - (2024-04-13) + +**New features:** + + * First major release\ + GrimoireLab reached a stable status. This is our first major release. + +**Bug fixes:** + + * Change password form fixed\ + An unused header in the UI made the attempts to change the password + fail. It tried to guess the user from an invalid JWT token when + multitenancy was enabled. + +**Dependencies updateds:** + + * Django version updated\ + Upgrade the Django version from 3.2 to 4.2. Support for Django 3.2 + ended at April 1, 2024. This change ensures compability with the + latests features and an extended support. + diff --git a/releases/unreleased/processed/change-password-form-fixed.yml b/releases/unreleased/processed/change-password-form-fixed.yml deleted file mode 100644 index 6f855334..00000000 --- a/releases/unreleased/processed/change-password-form-fixed.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Change password form fixed -category: fixed -author: Jose Javier Merchante -issue: null -notes: > - An unused header in the UI made the attempts - to change the password fail. It tried to guess - the user from an invalid JWT token when multitenancy - was enabled. diff --git a/releases/unreleased/processed/django-version-updated.yml b/releases/unreleased/processed/django-version-updated.yml deleted file mode 100644 index e1d18034..00000000 --- a/releases/unreleased/processed/django-version-updated.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Django version updated -category: dependency -author: Jose Javier Merchante -issue: null -notes: > - Upgrade the Django version from 3.2 to 4.2. Support for - Django 3.2 ended at April 1, 2024. This change ensures - compability with the latests features and an extended - support. diff --git a/releases/unreleased/processed/first-major-release.yml b/releases/unreleased/processed/first-major-release.yml deleted file mode 100644 index c66e0b1e..00000000 --- a/releases/unreleased/processed/first-major-release.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: First major release -category: added -author: Santiago DueƱas -issue: null -notes: > - GrimoireLab reached a stable status. This is our - first major release. - diff --git a/sortinghat/_version.py b/sortinghat/_version.py index df77858d..99da2144 100644 --- a/sortinghat/_version.py +++ b/sortinghat/_version.py @@ -1,2 +1,2 @@ -# File auto-generated by semverup on 2024-04-12 14:43:15.589631 -__version__ = "1.0.0-rc.3" +# File auto-generated by semverup on 2024-04-13 07:23:54.332910 +__version__ = "1.0.0"