diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 401e43ef0a8c89272618563f202877d45c9a0259..cede7ddfcac369883d437ff8725fcd95c2ac0263 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,12 +6,21 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog`_, and this project adheres to `Semantic Versioning`_. -Unreleased ----------- +`3.0b0` - 2023-02-22 +-------------------- + +This version requires AlekSIS-Core 3.0. It is incompatible with any previous +version. + +Removed +~~~~~~~ + +* Legacy menu integration for AlekSIS-Core pre-3.0 Added ~~~~~ +* Support for SPA in AlekSIS-Core 3.0 * If activated, imports with regex field types will show error messages when there is no match. @@ -200,3 +209,4 @@ Fixed .. _2.2: https://edugit.org/Teckids/AlekSIS/AlekSIS-App-CSVImport/-/tags/2.2 .. _2.2.1: https://edugit.org/Teckids/AlekSIS/AlekSIS-App-CSVImport/-/tags/2.2.1 .. _2.3: https://edugit.org/Teckids/AlekSIS/AlekSIS-App-CSVImport/-/tags/2.3 +.. _3.0b0: https://edugit.org/Teckids/AlekSIS/AlekSIS-App-CSVImport/-/tags/3.0b0 diff --git a/docs/conf.py b/docs/conf.py index b94e857efec07a79af5bad0afd25061d8b77a12d..75d6279b56a427b4d75907d49a09dd23ba767dbf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,9 +29,9 @@ copyright = "2018-2022 The AlekSIS team" author = "The AlekSIS Team" # The short X.Y version -version = "2.3" +version = "3.0" # The full version, including alpha/beta/rc tags -release = "2.3.1.dev0" +release = "3.0b0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index cd1cd628f0c2947e708517c316532f4ed0aa0572..2b48712ec9ef5f3382340e8befb9fb69541afda5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "AlekSIS-App-CSVImport" -version = "2.3.1.dev0" +version = "3.0b0" packages = [ { include = "aleksis" } ] @@ -37,7 +37,7 @@ python = "^3.9" pandas = "^1.0.0" phonenumbers = "^8.10" dateparser = "^1.0.0" -aleksis-core = "^3.0.dev3" +aleksis-core = "^3.0b0" "ruamel.yaml" = "^0.17.19" tqdm = "^4.62.3" chardet = "^5.0.0"