diff --git a/CHANGELOG.md b/CHANGELOG.md index 079be38..c61e2c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.22.0 - [Unreleased] +### v3.21.3 - 2024-06-14 + +#### Added + +- Add Ubuntu 24.04 LTS support + +#### Changed + +- Use MariaDB dynamic mirror by @VirtuBox in #673 + +#### Fixed + +- Fix mariadb repo migration by @VirtuBox in #668 + ### v3.21.2 - 2024-06-11 #### Added diff --git a/README.md b/README.md index aa07e84..12f040a 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,7 @@ #### Recommended +- Ubuntu 24.04 LTS (Noble) - Ubuntu 22.04 LTS (Jammy) - Ubuntu 20.04 LTS (Focal) @@ -71,10 +72,6 @@ - Raspbian 10 (Buster) - Raspbian 11 (Bullseye) -#### Not fully compatible yet - -- Ubuntu 24.04 LTS (Noble) - ## Getting Started ```bash diff --git a/install b/install index 633f2d1..8233f44 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo -E bash wo # ------------------------------------------------------------------------- -# Version 3.21.2 - 2024-06-11 +# Version 3.21.3 - 2024-06-14 # ------------------------------------------------------------------------- # CONTENTS diff --git a/setup.py b/setup.py index 7543236..01c3010 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ if os.geteuid() == 0: os.makedirs('/var/lib/wo/tmp/') setup(name='wordops', - version='3.21.2', + version='3.21.3', description='An essential toolset that eases server administration', long_description=LONG, long_description_content_type='text/markdown', diff --git a/wo/core/variables.py b/wo/core/variables.py index 5f25cec..1dd8dbb 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -15,7 +15,7 @@ class WOVar(): """Intialization of core variables""" # WordOps version - wo_version = "3.21.2" + wo_version = "3.21.3" # WordOps packages versions wo_adminer = "4.8.1" wo_phpmyadmin = "5.2.0"