Prepare for release v3.14.0

This commit is contained in:
VirtuBox
2022-01-26 13:14:13 +01:00
parent 9523ce05aa
commit 9732383cb8
3 changed files with 24 additions and 10 deletions

View File

@@ -6,11 +6,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## Releases ## Releases
### v3.14.0 - [Unreleased] ### v3.15.0 - [Unreleased]
### v3.14.0 - 2022-01-26
#### Added #### Added
- PHP 8.0 and 8.1 support - PHP 8.0 and 8.1 support ([PR #413](https://github.com/WordOps/WordOps/pull/413))
- Support arm64 architecture ([PR #392](https://github.com/WordOps/WordOps/pull/392))
#### Changed
- Update WP-CLI to v2.6.0 with PHP 8.0/8.1 support
- Update adminer to v4.8.1
- Update Redis repository ([PR #377](https://github.com/WordOps/WordOps/pull/377))
#### Fixed
- WordOps install script issues
- acme.sh issues with zero-ssl CA
#### v3.13.2 - 2020-10-27 #### v3.13.2 - 2020-10-27

View File

@@ -84,8 +84,8 @@ Detailed Getting Started guide with additional installation methods can be found
```bash ```bash
wo site create example.com --wp # install wordpress with PHP 7.3 without any page caching wo site create example.com --wp # install wordpress with PHP 7.3 without any page caching
wo site create example.com --wp --php72 # install wordpress with PHP 7.2 without any page caching wo site create example.com --wp --php80 # install wordpress with PHP 8.0 without any page caching
wo site create example.com --wp --php74 # install wordpress with PHP 7.4 without any page caching wo site create example.com --wp --php81 # install wordpress with PHP 8.1 without any page caching
wo site create example.com --wpfc # install wordpress + nginx fastcgi_cache wo site create example.com --wpfc # install wordpress + nginx fastcgi_cache
wo site create example.com --wpredis # install wordpress + nginx redis_cache wo site create example.com --wpredis # install wordpress + nginx redis_cache
wo site create example.com --wprocket # install wordpress with WP-Rocket plugin wo site create example.com --wprocket # install wordpress with WP-Rocket plugin
@@ -119,12 +119,12 @@ wo site create example.com --wpsubdomain --wpce # install wpmu-subdomain + C
```bash ```bash
wo site create example.com --html # create example.com for static/html sites wo site create example.com --html # create example.com for static/html sites
wo site create example.com --php # create example.com with php 7.3 support wo site create example.com --php # create example.com with php 8.0 support
wo site create example.com --php72 # create example.com with php 7.2 support wo site create example.com --php80 # create example.com with php 8.0 support
wo site create example.com --php74 # create example.com with php 7.4 support wo site create example.com --php74 # create example.com with php 7.4 support
wo site create example.com --mysql # create example.com with php 7.3 & mysql support wo site create example.com --mysql # create example.com with php 7.3 & mysql support
wo site create example.com --mysql --php72 # create example.com with php 7.2 & mysql support wo site create example.com --mysql --php81 # create example.com with php 8.1 & mysql support
wo site create example.com --mysql --php74 # create example.com with php 7.4 & mysql support wo site create example.com --mysql --php73 # create example.com with php 7.3 & mysql support
wo site create example.com --proxy=127.0.0.1:3000 # create example.com with nginx as reverse-proxy wo site create example.com --proxy=127.0.0.1:3000 # create example.com with nginx as reverse-proxy
``` ```

View File

@@ -4,12 +4,12 @@
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# Website: https://wordops.net # Website: https://wordops.net
# GitHub: https://github.com/WordOps/WordOps # GitHub: https://github.com/WordOps/WordOps
# Copyright (c) 2019-2021 - WordOps # Copyright (c) 2019-2022 - WordOps
# This script is licensed under M.I.T # This script is licensed under M.I.T
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# wget -qO wo wops.cc && sudo -E bash wo # wget -qO wo wops.cc && sudo -E bash wo
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# Version 3.14.0 - 2022-01-24 # Version 3.14.0 - 2022-01-26
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# CONTENTS # CONTENTS