Skip to content

Commit

Permalink
release v0.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
roi-codefresh committed Jun 26, 2022
1 parent 6e4cbc3 commit ae714b1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog:

# v0.3.8

### Changes
* Added Mac Silicon binary build target for release (#320)

### Security Fixes
* Fixed security issue by bumping argo-cd dependency to v2.4.1

# v0.3.7
* docs: fix edit url to use main branch (#300)
* adding --recover flag to bootstrap command for installing from an existing repo
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=v0.3.7
VERSION=v0.3.8
OUT_DIR=dist

CLI_NAME?=argocd-autopilot
Expand Down
16 changes: 9 additions & 7 deletions docs/releases/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
### Changes
* docs: fix edit url to use main branch (#300)
* adding --recover flag to bootstrap command for installing from an existing repo
* Added Mac Silicon binary build target for release (#320)

### Security Fixes
* Fixed security issue by bumping argo-cd dependency to v2.4.1

### Contributors:
- TAKAHASHI Shuuji ([@shuuji3](https://github.com/shuuji3))
- Rotem Cohen ([@rotem-codefresh](https://github.com/rotem-codefresh))
- Stefan Hojer ([@hojerst](https://github.com/hojerst))
- Roi Kramer ([@roi-codefresh](https://github.com/roi-codefresh))

## Installation:

Expand Down Expand Up @@ -43,7 +45,7 @@ argocd-autopilot version
### Linux and WSL (using curl):
```bash
# download and extract the binary
curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.3.7/argocd-autopilot-linux-amd64.tar.gz | tar zx
curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.3.8/argocd-autopilot-linux-amd64.tar.gz | tar zx

# move the binary to your $PATH
mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot
Expand All @@ -55,7 +57,7 @@ argocd-autopilot version
### Mac (using curl):
```bash
# download and extract the binary
curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.3.7/argocd-autopilot-darwin-amd64.tar.gz | tar zx
curl -L --output - https://github.com/argoproj-labs/argocd-autopilot/releases/download/v0.3.8/argocd-autopilot-darwin-amd64.tar.gz | tar zx

# move the binary to your $PATH
mv ./argocd-autopilot-* /usr/local/bin/argocd-autopilot
Expand All @@ -70,5 +72,5 @@ When using the Docker image, you have to provide the `.kube` and `.gitconfig` di
docker run \
-v ~/.kube:/home/autopilot/.kube \
-v ~/.gitconfig:/home/autopilot/.gitconfig \
-it quay.io/argoprojlabs/argocd-autopilot:v0.3.7 <cmd> <flags>
-it quay.io/argoprojlabs/argocd-autopilot:v0.3.8 <cmd> <flags>
```

0 comments on commit ae714b1

Please sign in to comment.