Skip to content

Commit d458f32

Browse files
committed
feat(docs): Release updates
Signed-off-by: sylus <[email protected]>
1 parent 5bd5fa0 commit d458f32

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

content/en/_index.en.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -69,51 +69,51 @@ <h1 class="text-center mb-5">Drupal WxT Latest News</h1>
6969
<div class="item">
7070
<div class="header">
7171
<div class="content">
72-
<div class="day">January 4</div>
72+
<div class="day">February 27</div>
7373
<div class="year">2022</div>
7474
</div>
7575
</div>
7676
<div class="title">
77-
<h3>Drupal WxT <a href="https://github.com/drupalwxt/wxt/releases/tag/4.2.0">v4.2.0 release</a> using Drupal Core 9.2.x</h3>
77+
<h3>Drupal WxT <a href="https://github.com/drupalwxt/wxt/releases/tag/4.2.2">v4.2.2 release</a> using Drupal Core 9.2.x</h3>
7878
</div>
7979
</div>
8080
</div>
8181
<div class="col-sm-6 col-md-3">
8282
<div class="item">
8383
<div class="header">
8484
<div class="content">
85-
<div class="day">January 2</div>
86-
<div class="year">2021</div>
85+
<div class="day">January 23</div>
86+
<div class="year">2022</div>
8787
</div>
8888
</div>
8989
<div class="title">
90-
<h3>Drupal WxT <a href="https://github.com/drupalwxt/wxt/releases/tag/4.1.3">v4.1.3 release</a> using Drupal Core 9.1.x</h3>
90+
<h3>Drupal WxT <a href="https://github.com/drupalwxt/wxt/releases/tag/4.2.1">v4.2.1 release</a> using Drupal Core 9.2.x</h3>
9191
</div>
9292
</div>
9393
</div>
9494
<div class="col-sm-6 col-md-3">
9595
<div class="item">
9696
<div class="header">
9797
<div class="content">
98-
<div class="day">November 22</div>
99-
<div class="year">2021</div>
98+
<div class="day">January 4</div>
99+
<div class="year">2022</div>
100100
</div>
101101
</div>
102102
<div class="title">
103-
<h3>Drupal WxT <a href="https://github.com/drupalwxt/wxt/releases/tag/4.1.2">v4.1.2 release</a> using Drupal Core 9.1.x</h3>
103+
<h3>Drupal WxT <a href="https://github.com/drupalwxt/wxt/releases/tag/4.2.0">v4.2.0 release</a> using Drupal Core 9.2.x</h3>
104104
</div>
105105
</div>
106106
</div>
107107
<div class="col-sm-6 col-md-3">
108108
<div class="item">
109109
<div class="header">
110110
<div class="content">
111-
<div class="day">September 22</div>
112-
<div class="year">2021</div>
111+
<div class="day">January 2</div>
112+
<div class="year">2022</div>
113113
</div>
114114
</div>
115115
<div class="title">
116-
<h3>Drupal WxT <a href="https://github.com/drupalwxt/wxt/releases/tag/4.1.1">v4.1.1 release</a> using Drupal Core 9.1.x</h3>
116+
<h3>Drupal WxT <a href="https://github.com/drupalwxt/wxt/releases/tag/4.1.3">v4.1.3 release</a> using Drupal Core 9.1.x</h3>
117117
</div>
118118
</div>
119119
</div>

content/en/docs/development/composer/_index.en.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ We highly recommend using our **[Composer Project Template][wxt-project]** to bu
2727
The following command is all you need to get started:
2828

2929
```sh
30-
composer create-project drupalwxt/wxt-project:4.2.0 <site-name>
30+
composer create-project drupalwxt/wxt-project:4.2.2 <site-name>
3131
```
3232

3333
> **Note**: For development you may also specify a branch using `drupalwxt/wxt-project:4.2.x-dev`.
@@ -39,7 +39,7 @@ You can see a working example of a fully generated Composer Project Template ove
3939
Where the following is the command that was used for the initial generation:
4040

4141
```sh
42-
composer create-project drupalwxt/wxt-project:4.2.0 site-wxt
42+
composer create-project drupalwxt/wxt-project:4.2.2 site-wxt
4343
```
4444

4545
> **Note**: Remember to keep the `composer.json` and `composer.lock` files that exist above `docroot` in source control as they are controlling your dependencies.
@@ -86,22 +86,22 @@ Composer will create `composer.lock` file, which is a list of dependencies that
8686

8787
Please **don't add `drupal/core` to your project's composer.json** since WxT manages Drupal Core for you along with the series of patches on top of it.
8888

89-
WxT's minor versions will always correspond to Drupal Core's. For example, `drupalwxt/wxt:~4.2.0` will require Drupal Core 9.2.x and `drupalwxt/wxt:~4.1.0` will require Drupal Core 9.1.x.
89+
WxT's minor versions will always correspond to Drupal Core's. For example, `drupalwxt/wxt:~4.2.x` will require Drupal Core 9.2.x and `drupalwxt/wxt:~4.1.x` required Drupal Core 9.1.x.
9090

9191
When you need to update Drupal Core as an example from 9.1.x to 9.2.x, all you would do is change your requirement for `drupalwxt/wxt` in your `composer.json` file:
9292

9393
```
94-
composer require --no-update drupalwxt/wxt:~4.2.0
94+
composer require --no-update drupalwxt/wxt:~4.2.2
9595
composer update
9696
```
9797

9898
### Compatibility table
9999

100100
| `drupalwxt/wxt` version | Drupal Core version | Drush version |
101101
| ----------------------- | ------------------- | ------------- |
102-
| `~4.2.0` | 9.2.x | `>=9.7` |
103-
| `~4.1.0` | 9.1.x | `>=9.7` |
104-
| `~4.0.0` | 8.8.x+ | `>=9.7` |
102+
| `~4.2.x` | 9.2.x | `>=9.7` |
103+
| `~4.1.x` | 9.1.x | `>=9.7` |
104+
| `~4.0.x` | 8.8.x+ | `>=9.7` |
105105

106106
<!-- Links Referenced -->
107107

0 commit comments

Comments
 (0)