Skip to content

Commit bb89208

Browse files
authored
release/2.17.0 (#112)
1 parent 4d7bc73 commit bb89208

File tree

4 files changed

+40
-4
lines changed

4 files changed

+40
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2+
## 2.17.0 (2024-04-11)
3+
### Features
4+
* feat(wp update): ✨ fast wp update by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/82
5+
6+
## 2.16.1 (2024-02-08)
7+
### Features
8+
* feat(wpUpdate): ✨ standardize composer.json settings - minimum-stability, prefer-stable - skip php extensions by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/73
9+
* feat(vault): ✨ Add command for generating .vault_pass by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/100
10+
11+
112
## 2.16.0 (2024-02-08)
213
### Features
314
* feat(wpUpdate): ✨ standardize composer.json settings - minimum-stability, prefer-stable - skip php extensions by @chrillep in https://github.com/triggerfishab/lisa-cli/pull/73

README.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,33 @@ Update WordPress and Composer dependencies.
211211
<details>
212212
<summary>Read more</summary>
213213
<p>
214+
Examples:
215+
216+
```sh
217+
lisa wp update
218+
```
219+
220+
```sh
221+
lisa wp update --fast
222+
```
223+
224+
commands that will be run:
225+
226+
**without** _--fast_
227+
```sh
228+
composer require composer/installers -W
229+
composer require roots/acorn -W
230+
composer require roots/wordpress -W
231+
composer require rector/rector -W --dev
232+
composer require squizlabs/php_codesniffer -W --dev
233+
composer require johnbillion/query-monitor -W --dev
234+
```
235+
**with** _--fast_
236+
```sh
237+
composer require composer/installers roots/acorn roots/wordpress -W
238+
composer require rector/rector squizlabs/php_codesniffer johnbillion/query-monitor -W --dev
239+
```
214240

215-
Example: `lisa wp update`
216241
</p>
217242
</details>
218243

@@ -268,4 +293,4 @@ lisa vault-pass-generate
268293
</p>
269294
</details>
270295

271-
&nbsp;
296+
&nbsp;

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { checkLisaVersion } from "./lib/versions.js"
2727
import { generateVaultPass } from "./tasks/trellis.js"
2828

2929
export const program = new Command()
30-
export const LISA_VERSION = "2.16.1"
30+
export const LISA_VERSION = "2.17.0"
3131

3232
resetConf()
3333
checkNodeVersion()

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@triggerfishab/lisa-cli",
3-
"version": "2.16.1",
3+
"version": "2.17.0",
44
"description": "CLI commands to generate a new project based on Lisa",
55
"main": "./index.js",
66
"bin": {

0 commit comments

Comments
 (0)