Skip to content

Commit

Permalink
chore(*): updates per v1.2.1 release (#990)
Browse files Browse the repository at this point in the history
Signed-off-by: Vaughn Dice <vadice@microsoft.com>
  • Loading branch information
vdice committed Oct 11, 2019
1 parent c818786 commit e668523
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion brigade-api/cmd/brigade-api/main.go
Expand Up @@ -249,7 +249,7 @@ func enrichSwaggerObject(swo *spec.Swagger) {
Name: "Apache-2.0",
URL: "https://www.apache.org/licenses/LICENSE-2.0",
},
Version: "1.2.0",
Version: "1.2.1",
},
}
}
2 changes: 1 addition & 1 deletion brigade-worker/package.json
@@ -1,6 +1,6 @@
{
"name": "brigade-worker",
"version": "1.2.0 ",
"version": "1.2.1",
"description": "Brigade Worker",
"main": "dist/index",
"types": "dist/index",
Expand Down
6 changes: 3 additions & 3 deletions docs/content/intro/quickstart.md
Expand Up @@ -22,10 +22,10 @@ You will now have Brigade installed. [Kashti](https://github.com/brigadecore/kas

## Install brig

Brig is the Brigade command line client. You can use `brig` to create/update/delete new brigade Projects, run Builds, etc. To get `brig`, navigate to the [Releases page](https://github.com/brigadecore/brigade/releases/) and then download the appropriate client for your platform. For example, if you're using Linux or WSL, you can get the 1.2.0 version in this way:
Brig is the Brigade command line client. You can use `brig` to create/update/delete new brigade Projects, run Builds, etc. To get `brig`, navigate to the [Releases page](https://github.com/brigadecore/brigade/releases/) and then download the appropriate client for your platform. For example, if you're using Linux or WSL, you can get the 1.2.1 version in this way:

```bash
wget -O brig https://github.com/brigadecore/brigade/releases/download/v1.2.0/brig-linux-amd64
wget -O brig https://github.com/brigadecore/brigade/releases/download/v1.2.1/brig-linux-amd64
chmod +x brig
mv brig ~/bin
```
Expand Down Expand Up @@ -123,7 +123,7 @@ Event created. Waiting for worker pod named "brigade-worker-01d0y7bcxs6ke0yayrx6
Build: 01d0y7bcxs6ke0yayrx6nbvm39, Worker: brigade-worker-01d0y7bcxs6ke0yayrx6nbvm39
prestart: no dependencies file found
prestart: loading script from /etc/brigade/script
[brigade] brigade-worker version: 1.2.0
[brigade] brigade-worker version: 1.2.1
[brigade:k8s] Creating secret do-nothing-01d0y7bcxs6ke0yayrx6nbvm39
[brigade:k8s] Creating pod do-nothing-01d0y7bcxs6ke0yayrx6nbvm39
[brigade:k8s] Timeout set at 900000
Expand Down
2 changes: 1 addition & 1 deletion docs/content/topics/developers.md
Expand Up @@ -63,7 +63,7 @@ $ cd $GOPATH/src/github.com/brigadecore/brigade
**Note**: this leaves you at the tip of **master** in the repository where active development
is happening. You might prefer to checkout the most recent stable tag:

- `$ git checkout v1.2.0`
- `$ git checkout v1.2.1`

After cloning the project locally, you should run this command to [configure the remote](https://help.github.com/articles/configuring-a-remote-for-a-fork/):

Expand Down
6 changes: 3 additions & 3 deletions docs/content/topics/releasing.md
Expand Up @@ -13,13 +13,13 @@ Once the intended commit has been tested and we have confidence to cut a release
we can follow these steps to release Brigade:

1. Issue a docs pull request with all `<current release>` strings updated to
`<anticipated release>`, e.g. `1.1.0` becomes `1.2.0`.
`<anticipated release>`, e.g. `1.2.0` becomes `1.2.1`.

1. Once this pull request is merged, create and push the git tag from the intended commit:

```console
$ git tag v1.2.0
$ git push origin v1.2.0
$ git tag v1.2.1
$ git push origin v1.2.1
```

The release pipeline located in our [brigade.js](../../brigade.js) then takes over
Expand Down
4 changes: 2 additions & 2 deletions docs/content/topics/workers.md
Expand Up @@ -51,7 +51,7 @@ an XML parser library. This can be accomplished using the following
`Dockerfile`:

```Dockerfile
FROM brigadecore/brigade-worker:v1.2.0
FROM brigadecore/brigade-worker:v1.2.1

RUN yarn add xml-simple
```
Expand Down Expand Up @@ -83,7 +83,7 @@ exports.alpineJob = function(name) {
We can build this file into our `Dockerfile` by copying it into the image:

```
FROM brigadecore/brigade-worker:v1.2.0
FROM brigadecore/brigade-worker:v1.2.1
RUN yarn add xml-simple
COPY mylib.js /home/src/dist
Expand Down

0 comments on commit e668523

Please sign in to comment.