Skip to content

Commit

Permalink
pre-release version bumps (#1763)
Browse files Browse the repository at this point in the history
Signed-off-by: Kent Rancourt <[email protected]>
  • Loading branch information
krancour committed Dec 13, 2021
1 parent d1aa883 commit 92a824c
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 @@ -111,7 +111,7 @@ environments:
**Linux**

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

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

```bash
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.0.0/brig-darwin-amd64
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.1.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.0.0/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
> (New-Object Net.WebClient).DownloadFile("https://github.com/brigadecore/brigade/releases/download/v2.1.0/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
> $env:PATH+=";$env:USERPROFILE\bin"
```

Expand Down Expand Up @@ -170,7 +170,7 @@ To install server-side components on your local, development-grade cluster:
```
$ helm install brigade \
oci://ghcr.io/brigadecore/brigade \
--version v2.0.0 \
--version v2.1.0 \
--create-namespace \
--namespace brigade \
--wait \
Expand Down Expand Up @@ -320,7 +320,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.0.0
2021-08-10T16:52:01.699Z INFO: brigade-worker version: v2.1.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 @@ -380,7 +380,7 @@ using the following commands:
$ helm uninstall brigade -n brigade
$ helm install brigade \
oci://ghcr.io/brigadecore/brigade \
--version v2.0.0 \
--version v2.1.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 @@ -74,7 +74,7 @@ cluster, view our [QuickStart](/intro/quickstart/) instead.
```console
$ helm inspect values oci://ghcr.io/brigadecore/brigade \
--version v2.0.0 > ~/brigade-values.yaml
--version v2.1.0 > ~/brigade-values.yaml
```
In the next steps, we'll edit `~/brigade-values.yaml` to configure a
Expand Down Expand Up @@ -301,7 +301,7 @@ suitable for production, we can proceed with installation:
```console
$ helm install brigade \
oci://ghcr.io/brigadecore/brigade \
--version v2.0.0 \
--version v2.1.0 \
--create-namespace \
--namespace brigade \
--values ~/brigade-values.yaml \
Expand Down Expand Up @@ -361,7 +361,7 @@ instructions for common environments:
**Linux**
```bash
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.0.0/brig-linux-amd64
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.1.0/brig-linux-amd64
$ chmod +x /usr/local/bin/brig
```
Expand All @@ -378,15 +378,15 @@ Alternatively, you can install manually by directly downloading a pre-built
binary:
```bash
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.0.0/brig-darwin-amd64
$ curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.1.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.0.0/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
> (New-Object Net.WebClient).DownloadFile("https://github.com/brigadecore/brigade/releases/download/v2.1.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 @@ -34,7 +34,7 @@ You can also build brig from source; see the [Developers] guide for more info.
**linux**

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

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

```bash
curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.0.0/brig-darwin-amd64
curl -Lo /usr/local/bin/brig https://github.com/brigadecore/brigade/releases/download/v2.1.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.0.0/brig-windows-amd64.exe", "$ENV:USERPROFILE\bin\brig.exe")
(New-Object Net.WebClient).DownloadFile("https://github.com/brigadecore/brigade/releases/download/v2.1.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 @@ -92,7 +92,7 @@ Then, create a `package.json` file with our brigadier dependency added:
```json
{
"dependencies": {
"@brigadecore/brigadier": "^2.0.0"
"@brigadecore/brigadier": "^2.1.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.0.0"
"@brigadecore/brigadier": "^2.1.0"
}
}
`)
Expand Down

0 comments on commit 92a824c

Please sign in to comment.