Skip to content

Commit 8d6f4c2

Browse files
authoredApr 9, 2024
Merge pull request #98 from lx-wnk/chore/prepare-release
Release preparations for 2.2.0
2 parents 3f16d7e + 50a21b9 commit 8d6f4c2

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed
 

‎README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,17 @@ tightly tailored to the needs of our team members working on various projects wi
1515
- Pre-installed [shopware-cli](https://sw-cli.fos.gg/)
1616

1717
## Requirements
18-
* devenv: `v0.6.3` or higher
18+
* devenv: `v1.0.3` or higher
1919

2020
## Setup & Usage
2121
A description about the setup and usage can be found in the [Wiki](https://github.com/kellerkinderDE/devenv-shopware/wiki).
2222

23+
### Multiple Projects
24+
If you want to run multiple projects at same time, you may need to choose a different `process.implementation` instead of `process-compose`.
25+
This would be possible by adding `process.implementation = "honcho";` to your `devenv.nix`.
26+
27+
A complete list of possible options can be found [here](https://devenv.sh/reference/options/#processimplementation)
28+
2329
### Update
2430
To update your devenv config to the latest version, simply follow the update instructions for the new version in the [Wiki](https://github.com/kellerkinderDE/devenv-shopware/wiki/Update)
2531

‎devenv.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
let
33
cfg = config.kellerkinder;
44

5-
currentVersion = "v2.1.1";
5+
currentVersion = "v2.2.0";
66

77
listEntries = path:
88
map (name: path + "/${name}") (builtins.attrNames (builtins.readDir path));

‎docs/Update.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Updates
22

3+
## v2.2.0
4+
* You have to adjust your `devenv.yaml` to
5+
```yml
6+
...
7+
kellerkinder:
8+
url: github:kellerkinderDE/devenv-shopware?ref=v2.2.0
9+
flake: false
10+
...
11+
```
12+
* If you want to run multiple projects at the same time, you may have to consider adding `process.implementation = "honcho";` to your `devenv.nix` as the default [process manager in devenv](https://devenv.sh/reference/options/#processimplementation) has changed.
13+
314
## v2.1.0
415
* We support now the newest version of [shopware-cli](https://github.com/FriendsOfShopware/shopware-cli/releases), which be installed directly. To do this, you just need to adjust the following in your `devenv.yaml`
516
```yml

‎examples/sw5/devenv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
nixpkgs:
66
url: github:NixOS/nixpkgs/nixos-23.11
77
kellerkinder:
8-
url: github:kellerkinderDE/devenv-shopware?ref=v2.1.1
8+
url: github:kellerkinderDE/devenv-shopware?ref=v2.2.0
99
flake: false
1010
phps:
1111
url: github:fossar/nix-phps

‎examples/sw6/devenv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
nixpkgs:
66
url: github:NixOS/nixpkgs/nixos-23.11
77
kellerkinder:
8-
url: github:kellerkinderDE/devenv-shopware?ref=v2.1.1
8+
url: github:kellerkinderDE/devenv-shopware?ref=v2.2.0
99
flake: false
1010
froshpkgs:
1111
url: github:FriendsOfShopware/nur-packages

0 commit comments

Comments
 (0)
Please sign in to comment.