Bump version to v3.18.1
This commit is contained in:
15
CHANGELOG.md
15
CHANGELOG.md
@@ -8,6 +8,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
|
|
||||||
### v3.19.0 - [Unreleased]
|
### v3.19.0 - [Unreleased]
|
||||||
|
|
||||||
|
### v3.18.1 - 2023-09-26
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
- `wo site update` not changing site's php version
|
||||||
|
- Netdata install with a remote MySQL server
|
||||||
|
- Remove outdated Anemometer package
|
||||||
|
- Update bash_completion
|
||||||
|
|
||||||
### v3.18.0 - 2023-08-28
|
### v3.18.0 - 2023-08-28
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
@@ -82,7 +91,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- psutil dependency upgrade
|
- psutil dependency upgrade
|
||||||
- Fix wrong else statements in stack_services.py ([PR #475](https://github.com/WordOps/WordOps/pull/475)) @stodorovic
|
- Fix wrong else statements in stack_services.py ([PR #475](https://github.com/WordOps/WordOps/pull/475)) @stodorovic
|
||||||
|
|
||||||
|
|
||||||
### v3.15.4 - 2022-10-25
|
### v3.15.4 - 2022-10-25
|
||||||
|
|
||||||
#### Fixed
|
#### Fixed
|
||||||
@@ -449,7 +457,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- `wo stack install --cheat` wasn't working properly previously
|
- `wo stack install --cheat` wasn't working properly previously
|
||||||
- `wo info` failure depending on php-fpm pool name. ConfigParser will now detect the section name.
|
- `wo info` failure depending on php-fpm pool name. ConfigParser will now detect the section name.
|
||||||
|
|
||||||
|
|
||||||
### v3.9.9.4 - 2019-10-18
|
### v3.9.9.4 - 2019-10-18
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
@@ -967,7 +974,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- WordOps configuration backup before upgrade
|
- WordOps configuration backup before upgrade
|
||||||
- Previous acme.sh certs migration
|
- Previous acme.sh certs migration
|
||||||
- "wo maintenance" command to perform server package update & cleanup
|
- "wo maintenance" command to perform server package update & cleanup
|
||||||
- Support for Netdata on backend : https://server.hostname:22222/netdata/
|
- Support for Netdata on backend : <https://server.hostname:22222/netdata/>
|
||||||
- New Stacks : composer and netdata
|
- New Stacks : composer and netdata
|
||||||
- additional argument for letsencrypt : --hsts
|
- additional argument for letsencrypt : --hsts
|
||||||
- Clean Theme for adminer
|
- Clean Theme for adminer
|
||||||
@@ -1086,4 +1093,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
- Added more automated testing with Redis
|
- Added more automated testing with Redis
|
||||||
- Replaced Postfix with smtp-cli
|
- Replaced Postfix with smtp-cli
|
||||||
- Dropped mail services
|
- Dropped mail services
|
||||||
- Dropped w3tc support
|
- Dropped w3tc support
|
||||||
|
|||||||
2
install
2
install
@@ -9,7 +9,7 @@
|
|||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# wget -qO wo wops.cc && sudo -E bash wo
|
# wget -qO wo wops.cc && sudo -E bash wo
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
# Version 3.18.0 - 2023-08-28
|
# Version 3.18.1 - 2023-09-26
|
||||||
# -------------------------------------------------------------------------
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
# CONTENTS
|
# CONTENTS
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -27,7 +27,7 @@ if os.geteuid() == 0:
|
|||||||
os.makedirs('/var/lib/wo/tmp/')
|
os.makedirs('/var/lib/wo/tmp/')
|
||||||
|
|
||||||
setup(name='wordops',
|
setup(name='wordops',
|
||||||
version='3.18.0',
|
version='3.18.1',
|
||||||
description='An essential toolset that eases server administration',
|
description='An essential toolset that eases server administration',
|
||||||
long_description=LONG,
|
long_description=LONG,
|
||||||
long_description_content_type='text/markdown',
|
long_description_content_type='text/markdown',
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ class WOVar():
|
|||||||
"""Intialization of core variables"""
|
"""Intialization of core variables"""
|
||||||
|
|
||||||
# WordOps version
|
# WordOps version
|
||||||
wo_version = "3.18.0"
|
wo_version = "3.18.1"
|
||||||
# WordOps packages versions
|
# WordOps packages versions
|
||||||
wo_wp_cli = "2.8.1"
|
wo_wp_cli = "2.8.1"
|
||||||
wo_adminer = "4.8.1"
|
wo_adminer = "4.8.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user