Skip to content

Commit 24f9397

Browse files
committed
Update version to 0.4.0
1 parent 0c3bff4 commit 24f9397

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/installation/docker-standalone.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ docker container run -d \
2121
-p "7015:7015" \
2222
-v /path/to/dirigent/config:/srv/config \
2323
-v dirigent-data:/srv/data \
24-
ghcr.io/codedmonkey/dirigent:0.3
24+
ghcr.io/codedmonkey/dirigent:0.4
2525
```
2626

2727
### Docker Compose configuration
2828

2929
```yaml
3030
services:
3131
dirigent:
32-
image: ghcr.io/codedmonkey/dirigent:0.3
32+
image: ghcr.io/codedmonkey/dirigent:0.4
3333
ports:
3434
- "7015:7015"
3535
volumes:
@@ -95,7 +95,7 @@ commit you want to build. Simply run the `docker build` command inside the repos
9595
```shell
9696
git clone https://github.com/codedmonkey/dirigent.git
9797
cd dirigent
98-
git checkout v0.3.1
98+
git checkout v0.4.0
9999
docker build -t dirigent-standalone .
100100
```
101101

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Proceed with caution.
1919
The easiest way to install Dirigent is through our Docker image.
2020

2121
```shell
22-
docker run -p "7015:7015" ghcr.io/codedmonkey/dirigent:0.3
22+
docker run -p "7015:7015" ghcr.io/codedmonkey/dirigent:0.4
2323
```
2424

2525
Learn more about installing and configuring Dirigent in our [installation guide][docs-install].

src/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Kernel extends BaseKernel
1313
{
1414
use MicroKernelTrait;
1515

16-
public const VERSION = '0.3.x-dev';
16+
public const VERSION = '0.4.0';
1717

1818
protected function configureContainer(ContainerConfigurator $container): void
1919
{

0 commit comments

Comments
 (0)