From 0568a3dbf96ad634a320c8b04a03c354e3878c02 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Wed, 4 Dec 2019 21:58:53 +0100 Subject: [PATCH] Bump version de v3.11.1 --- CHANGELOG.md | 12 ++++++++++++ install | 2 +- setup.py | 2 +- wo/core/variables.py | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85cc359..c0ae5a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### v3.9.x - [Unreleased] +### v3.11.1 - 2019-12-04 + +#### Added + +- `--fail2ban` in wo stack upgrade + +#### Fixed + +- error with `wo maintenance` +- php-igbinary missing for php74 (run `wo stack upgrade` to install it) +- opcache reset with `wo clean` + ### v3.11.0 - 2019-12-03 #### Added diff --git a/install b/install index 6c6e4a6..16642d2 100755 --- a/install +++ b/install @@ -9,7 +9,7 @@ # ------------------------------------------------------------------------- # wget -qO wo wops.cc && sudo bash wo # ------------------------------------------------------------------------- -# Version 3.11.0 - 2019-12-03 +# Version 3.11.1 - 2019-12-04 # ------------------------------------------------------------------------- # CONTENTS diff --git a/setup.py b/setup.py index 6af933c..602f4aa 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.11.0', + version='3.11.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 423f141..afc8dad 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.11.0" + wo_version = "3.11.1" # WordOps packages versions wo_wp_cli = "2.4.0" wo_adminer = "4.7.5"