From cb40ae106e1e13516112e1ed9150444888ce203b Mon Sep 17 00:00:00 2001 From: Luca Tumedei Date: Fri, 10 May 2024 14:53:31 +0200 Subject: [PATCH] doc(src,changelog.md) set version to 1.6.3 --- changelog.md | 5 +++++ slic.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index f14e844..bc9ad9e 100644 --- a/changelog.md +++ b/changelog.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# [1.6.3] - 2024-05-10 +* Added - The `playwright` command to Playwright commands in the stack. +* Added - The `less` binary to the `slic` container (to correctly format wp-cli output). +* Added - The `p` alias to the `slic` container to allow running Playwright commands with `p `, similar to `c ` to run Codeception commands. + # [1.6.2] - 2024-05-10 * Added - The `slic` command now loads the `.env.slic.local` file from the target directory if it exists. (thanks @cliffordp) * Added - The `chrome` container shm size is now set to `256m` by default, and is controllable via the `SLIC_CHROME_CONTAINER_SHM_SIZE` env var. (thanks @maurisrx) diff --git a/slic.php b/slic.php index 4759cf9..0513e19 100644 --- a/slic.php +++ b/slic.php @@ -34,7 +34,7 @@ ] ); $cli_name = 'slic'; -const CLI_VERSION = '1.6.2'; +const CLI_VERSION = '1.6.3'; // If the run-time option `-q`, for "quiet", is specified, then do not print the header. if ( in_array( '-q', $argv, true ) || ( in_array( 'exec', $argv, true ) && ! in_array( 'help', $argv, true ) ) ) {