Skip to content

Commit

Permalink
pre-release version bumps (#1929)
Browse files Browse the repository at this point in the history
Signed-off-by: Kent Rancourt <kent.rancourt@microsoft.com>
  • Loading branch information
krancour authored Apr 14, 2022
1 parent b376fa1 commit 9e226ad
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions docs/content/intro/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ the Brigade CLI later when we're ready to take Brigade for a test drive.
```shell
$ helm install brigade \
oci://ghcr.io/brigadecore/brigade \
--version v2.3.1 \
--version v2.4.0 \
--create-namespace \
--namespace brigade \
--wait \
Expand Down Expand Up @@ -109,7 +109,7 @@ environments:
**Linux**

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

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

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

**Windows**

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

Expand Down Expand Up @@ -268,7 +268,7 @@ Below is example output:
Created event "2cb85062-f964-454d-ac5c-526cdbdd2679".
Waiting for event's worker to be RUNNING...
2021-08-10T16:52:01.699Z INFO: brigade-worker version: v2.3.1
2021-08-10T16:52:01.699Z INFO: brigade-worker version: v2.4.0
2021-08-10T16:52:01.701Z DEBUG: writing default brigade.ts to /var/vcs/.brigade/brigade.ts
2021-08-10T16:52:01.702Z DEBUG: using npm as the package manager
2021-08-10T16:52:01.702Z DEBUG: path /var/vcs/.brigade/node_modules/@brigadecore does not exist; creating it
Expand Down Expand Up @@ -327,7 +327,7 @@ using the following commands:
$ helm uninstall brigade -n brigade
$ helm install brigade \
oci://ghcr.io/brigadecore/brigade \
--version v2.3.1 \
--version v2.4.0 \
--namespace brigade \
--wait \
--timeout 300s
Expand Down
10 changes: 5 additions & 5 deletions docs/content/topics/operators/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ cluster, view our [QuickStart](/intro/quickstart/) instead.
```shell
$ helm inspect values oci://ghcr.io/brigadecore/brigade \
--version v2.3.1 > ~/brigade-values.yaml
--version v2.4.0 > ~/brigade-values.yaml
```
In the next steps, we'll edit `~/brigade-values.yaml` to configure a
Expand Down Expand Up @@ -302,7 +302,7 @@ suitable for production, we can proceed with installation:
```shell
$ helm install brigade \
oci://ghcr.io/brigadecore/brigade \
--version v2.3.1 \
--version v2.4.0 \
--create-namespace \
--namespace brigade \
--values ~/brigade-values.yaml \
Expand Down Expand Up @@ -360,7 +360,7 @@ instructions for common environments:
**Linux**
```shell
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-linux-amd64
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-linux-amd64
$ chmod +x /usr/local/bin/brig
```
Expand All @@ -377,15 +377,15 @@ Alternatively, you can install manually by directly downloading a pre-built
binary:
```shell
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-darwin-amd64
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-darwin-amd64
$ chmod +x /usr/local/bin/brig
```
**Windows**
```powershell
> mkdir -force $env:USERPROFILE\bin
> (New-Object Net.WebClient).DownloadFile("https://github.com/brigadecore/brigade/releases/download/v2.3.1/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
> (New-Object Net.WebClient).DownloadFile("https://github.com/brigadecore/brigade/releases/download/v2.4.0/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
> $env:PATH+=";$env:USERPROFILE\bin"
```
Expand Down
6 changes: 3 additions & 3 deletions docs/content/topics/project-developers/brig.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ You can also build brig from source; see the [Developers] guide for more info.
**linux**

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

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

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

**windows**

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

Expand Down
2 changes: 1 addition & 1 deletion docs/content/topics/scripting/brigadier.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Then, create a `package.json` file with our brigadier dependency added:
```json
{
"dependencies": {
"@brigadecore/brigadier": "^2.3.1"
"@brigadecore/brigadier": "^2.4.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion v2/cli/init_templates.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ var secretsTemplate = []byte(`## This file was created by brig init.
var packageTemplate = []byte(`{
"name": "{{ .ProjectID }}",
"dependencies": {
"@brigadecore/brigadier": "^2.3.1"
"@brigadecore/brigadier": "^2.4.0"
}
}
`)
Expand Down

0 comments on commit 9e226ad

Please sign in to comment.