diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ec2d4a..107d91a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.9.x - [Unreleased] +#### v3.13.1 - 2020-10-26 + #### Fixed - Python virtualenv configuration diff --git a/install b/install index a30dd58..1eb89d8 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo -E bash wo # ------------------------------------------------------------------------- -# Version 3.13.0 - 2020-10-25 +# Version 3.13.1 - 2020-10-26 # ------------------------------------------------------------------------- # CONTENTS diff --git a/setup.py b/setup.py index d437072..05d08f0 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.13.0', + version='3.13.1', 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 6af68de..bc46051 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -14,7 +14,7 @@ class WOVar(): """Intialization of core variables""" # WordOps version - wo_version = "3.13.0" + wo_version = "3.13.1" # WordOps packages versions wo_wp_cli = "2.4.0" wo_adminer = "4.7.5"