Skip to content

Commit 9e226ad

Browse files
authored
pre-release version bumps (#1929)
Signed-off-by: Kent Rancourt <kent.rancourt@microsoft.com>
1 parent b376fa1 commit 9e226ad

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

docs/content/intro/quickstart.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ the Brigade CLI later when we're ready to take Brigade for a test drive.
6868
```shell
6969
$ helm install brigade \
7070
oci://ghcr.io/brigadecore/brigade \
71-
--version v2.3.1 \
71+
--version v2.4.0 \
7272
--create-namespace \
7373
--namespace brigade \
7474
--wait \
@@ -109,7 +109,7 @@ environments:
109109
**Linux**
110110

111111
```shell
112-
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-linux-amd64
112+
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-linux-amd64
113113
$ chmod +x /usr/local/bin/brig
114114
```
115115

@@ -126,15 +126,15 @@ Alternatively, you can install manually by directly downloading a pre-built
126126
binary:
127127

128128
```shell
129-
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-darwin-amd64
129+
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-darwin-amd64
130130
$ chmod +x /usr/local/bin/brig
131131
```
132132

133133
**Windows**
134134

135135
```powershell
136136
> mkdir -force $env:USERPROFILE\bin
137-
> (New-Object Net.WebClient).DownloadFile("https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
137+
> (New-Object Net.WebClient).DownloadFile("https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
138138
> $env:PATH+=";$env:USERPROFILE\bin"
139139
```
140140

@@ -268,7 +268,7 @@ Below is example output:
268268
Created event "2cb85062-f964-454d-ac5c-526cdbdd2679".
269269
270270
Waiting for event's worker to be RUNNING...
271-
2021-08-10T16:52:01.699Z INFO: brigade-worker version: v2.3.1
271+
2021-08-10T16:52:01.699Z INFO: brigade-worker version: v2.4.0
272272
2021-08-10T16:52:01.701Z DEBUG: writing default brigade.ts to /var/vcs/.brigade/brigade.ts
273273
2021-08-10T16:52:01.702Z DEBUG: using npm as the package manager
274274
2021-08-10T16:52:01.702Z DEBUG: path /var/vcs/.brigade/node_modules/@brigadecore does not exist; creating it
@@ -327,7 +327,7 @@ using the following commands:
327327
$ helm uninstall brigade -n brigade
328328
$ helm install brigade \
329329
oci://ghcr.io/brigadecore/brigade \
330-
--version v2.3.1 \
330+
--version v2.4.0 \
331331
--namespace brigade \
332332
--wait \
333333
--timeout 300s

docs/content/topics/operators/deploy.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ cluster, view our [QuickStart](/intro/quickstart/) instead.
7575
7676
```shell
7777
$ helm inspect values oci://ghcr.io/brigadecore/brigade \
78-
--version v2.3.1 > ~/brigade-values.yaml
78+
--version v2.4.0 > ~/brigade-values.yaml
7979
```
8080
8181
In the next steps, we'll edit `~/brigade-values.yaml` to configure a
@@ -302,7 +302,7 @@ suitable for production, we can proceed with installation:
302302
```shell
303303
$ helm install brigade \
304304
oci://ghcr.io/brigadecore/brigade \
305-
--version v2.3.1 \
305+
--version v2.4.0 \
306306
--create-namespace \
307307
--namespace brigade \
308308
--values ~/brigade-values.yaml \
@@ -360,7 +360,7 @@ instructions for common environments:
360360
**Linux**
361361
362362
```shell
363-
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-linux-amd64
363+
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-linux-amd64
364364
$ chmod +x /usr/local/bin/brig
365365
```
366366
@@ -377,15 +377,15 @@ Alternatively, you can install manually by directly downloading a pre-built
377377
binary:
378378
379379
```shell
380-
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-darwin-amd64
380+
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-darwin-amd64
381381
$ chmod +x /usr/local/bin/brig
382382
```
383383
384384
**Windows**
385385
386386
```powershell
387387
> mkdir -force $env:USERPROFILE\bin
388-
> (New-Object Net.WebClient).DownloadFile("https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
388+
> (New-Object Net.WebClient).DownloadFile("https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
389389
> $env:PATH+=";$env:USERPROFILE\bin"
390390
```
391391

docs/content/topics/project-developers/brig.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ You can also build brig from source; see the [Developers] guide for more info.
3333
**linux**
3434

3535
```shell
36-
curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-linux-amd64
36+
curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-linux-amd64
3737
chmod +x /usr/local/bin/brig
3838
```
3939

@@ -50,15 +50,15 @@ Alternatively, you can install manually by directly downloading a pre-built
5050
binary:
5151

5252
```shell
53-
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-darwin-amd64
53+
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-darwin-amd64
5454
$ chmod +x /usr/local/bin/brig
5555
```
5656

5757
**windows**
5858

5959
```powershell
6060
> mkdir -force $env:USERPROFILE\bin
61-
> (New-Object Net.WebClient).DownloadFile("https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
61+
> (New-Object Net.WebClient).DownloadFile("https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
6262
> $env:PATH+=";$env:USERPROFILE\bin"
6363
```
6464

docs/content/topics/scripting/brigadier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Then, create a `package.json` file with our brigadier dependency added:
9090
```json
9191
{
9292
"dependencies": {
93-
"@brigadecore/brigadier": "^2.3.1"
93+
"@brigadecore/brigadier": "^2.4.0"
9494
}
9595
}
9696
```

v2/cli/init_templates.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ var secretsTemplate = []byte(`## This file was created by brig init.
136136
var packageTemplate = []byte(`{
137137
"name": "{{ .ProjectID }}",
138138
"dependencies": {
139-
"@brigadecore/brigadier": "^2.3.1"
139+
"@brigadecore/brigadier": "^2.4.0"
140140
}
141141
}
142142
`)

0 commit comments

Comments
 (0)