From 59aaa9ea4580a5c455349c98ffd8f60c55660d48 Mon Sep 17 00:00:00 2001 From: Alexander Matyushentsev Date: Wed, 24 Oct 2018 13:31:12 -0700 Subject: [PATCH] Changelog for v0.10.1 release --- CHANGELOG.md | 7 ++++++- docs/getting_started.md | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56529ac3885c4..3817ed4066aa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog -## v0.10.0 (TBD) +## v0.10.1 (2018-10-24) + +- Handle case where OIDC settings become invalid after dex server restart (issue #710) +- git clean also needs to clean files under gitignore (issue #711) + +## v0.10.0 (2018-10-19) ### Changes since v0.9: diff --git a/docs/getting_started.md b/docs/getting_started.md index 3da6620debebd..780d4b68f9ac2 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -9,7 +9,7 @@ An example guestbook application is provided to demonstrate how ArgoCD works. ## 1. Install ArgoCD ```bash kubectl create namespace argocd -kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v0.10.0/manifests/install.yaml +kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v0.10.1/manifests/install.yaml ``` This will create a new namespace, `argocd`, where ArgoCD services and application resources will live. @@ -31,7 +31,7 @@ brew install argoproj/tap/argocd On Linux: ```bash -curl -sSL -o /usr/local/bin/argocd https://github.com/argoproj/argo-cd/releases/download/v0.10.0/argocd-linux-amd64 +curl -sSL -o /usr/local/bin/argocd https://github.com/argoproj/argo-cd/releases/download/v0.10.1/argocd-linux-amd64 chmod +x /usr/local/bin/argocd ```