diff --git a/CHANGELOG.md b/CHANGELOG.md index d99e293..68c5bb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.17.0 - [Unreleased] +### v3.16.3 - 2023-01-29 + +#### Fixed + +- SQLAlchemy version locked + ### v3.16.2 - 2023-01-21 #### Changed diff --git a/install b/install index 6e80a36..70494cd 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo -E bash wo # ------------------------------------------------------------------------- -# Version 3.16.2 - 2023-01-21 +# Version 3.16.3 - 2023-01-29 # ------------------------------------------------------------------------- # CONTENTS diff --git a/setup.py b/setup.py index 6b6e8b1..3bb861a 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.16.2', + version='3.16.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 d2953cf..0e0ae60 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.16.2" + wo_version = "3.16.3" # WordOps packages versions wo_wp_cli = "2.7.1" wo_adminer = "4.8.1"