diff --git a/CHANGELOG.md b/CHANGELOG.md index bdb292b..04ed290 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,11 @@ ## [Unreleased] +## [0.10.4] - 2022-01-14 + * Added: New `sail rebuild` command to re-provision a fresh environment on the same host * Added: New `sail db reset-password` command to reset the database credentials and update wp-config.php +* Added: A `sail db import` will attempt an atomic import via a temporary table, will fix non-standard table prefixes, use `--partial` to override * Changed: Set the WordPress admin_user to the first part of the provided e-mail, to prevent leaking the full e-mail address * Changed: Removed syslog configuration from Nginx for better performance * Changed: Updated `sail logs` to work with default Nginx access/error logs in addition to journald diff --git a/sail/__version__.py b/sail/__version__.py index fce67d2..7ec5c6f 100644 --- a/sail/__version__.py +++ b/sail/__version__.py @@ -1,6 +1,6 @@ __title__ = 'sail' __description__ = 'CLI tool to deploy and manage WordPress applications on DigitalOcean' -__version__ = '0.10.4-beta1' +__version__ = '0.10.4' __author__ = 'Konstantin Kovshenin' __author_email__ = 'kovshenin@gmail.com' __url__ = 'https://sailed.io'