v3.11.0 (#211)
- PHP 7.4 support - Improved Webp images support with Cloudflare (Issue [#95](https://github.com/WordOps/WordOps/issues/95)). Nginx will not serve webp images alternative with Cloudflare IP ranges. - Stack upgrade for adminer - Check acme.sh installation and setup acme.sh if needed before issuing certificate - Add `--ufw` to `wo stack status` - Add Nginx directive `gzip_static on;` to serve precompressed assets with Cache-Enabler or WP-Rocket. (Issue [#207](https://github.com/WordOps/WordOps/issues/207)) - Previous `--php73` & `--php73=off` flags are replaced by `--php72`, `--php73`, `--php74` to switch site's php version - phpMyAdmin updated to v4.9.2 - Adminer updated to v4.7.5 - Replace dot and dashes by underscores in database names (Issue [#206](https://github.com/WordOps/WordOps/issues/206)) - Increased database name length to 32 characters from domain name + 8 random characters - typo error in motd-news script (Issue [#204](https://github.com/WordOps/WordOps/issues/204)) - Install Nginx before ngxblocker - WordOps install/update script text color - Issue with MySQL stack on Raspbian 9/10 - Typo error (PR [#205](https://github.com/WordOps/WordOps/pull/205)) - php version in `wo debug` (PR [#209](https://github.com/WordOps/WordOps/pull/209)) - SSL certificates expiration display with shared wildcard certificates
This commit is contained in:
12
setup.py
12
setup.py
@@ -27,7 +27,7 @@ if os.geteuid() == 0:
|
||||
os.makedirs('/var/lib/wo/tmp/')
|
||||
|
||||
setup(name='wordops',
|
||||
version='3.10.3',
|
||||
version='3.11.0',
|
||||
description='An essential toolset that eases server administration',
|
||||
long_description=LONG,
|
||||
long_description_content_type='text/markdown',
|
||||
@@ -40,11 +40,17 @@ setup(name='wordops',
|
||||
"Natural Language :: English",
|
||||
"Topic :: System :: Systems Administration",
|
||||
],
|
||||
keywords='',
|
||||
keywords='nginx automation wordpress deployment CLI',
|
||||
author='WordOps',
|
||||
author_email='contact@wordops.io',
|
||||
url='https://github.com/WordOps/WordOps',
|
||||
license='MIT',
|
||||
project_urls={
|
||||
'Documentation': 'https://docs.wordops.net',
|
||||
'Forum': 'https://community.wordops.net',
|
||||
'Source': 'https://github.com/WordOps/WordOps',
|
||||
'Tracker': 'https://github.com/WordOps/WordOps/issues',
|
||||
},
|
||||
packages=find_packages(exclude=['ez_setup', 'examples', 'tests',
|
||||
'templates']),
|
||||
include_package_data=True,
|
||||
@@ -64,6 +70,8 @@ setup(name='wordops',
|
||||
'SQLAlchemy >= 1.3.8',
|
||||
'requests >= 2.22.0',
|
||||
'distro >= 1.4.0',
|
||||
'argcomplete >= 1.10.0',
|
||||
'colorlog >= 4.0.2',
|
||||
],
|
||||
extras_require={ # Optional
|
||||
'testing': ['nose', 'coverage'],
|
||||
|
||||
Reference in New Issue
Block a user