From f4f74ec5990d8cd0cf18d2aa2d7c0ff275d9eb1c Mon Sep 17 00:00:00 2001 From: Sunny Date: Thu, 24 Aug 2023 13:22:00 +0000 Subject: [PATCH] Release v1.1.0 Signed-off-by: Sunny --- CHANGELOG.md | 15 +++++++++++++++ docs/resources/bootstrap_git.md | 2 +- internal/utils/flux.go | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index decd81ce..f3ee07a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project are documented in this file. +## 1.1.0 + +**Release date:** 2023-08-24 + +This release includes flux2 [v2.1.0](https://github.com/fluxcd/flux2/releases/tag/v2.1.0). + +Improvements: +- Update dependencies + [540](https://github.com/fluxcd/terraform-provider-flux/pull/540), + [533](https://github.com/fluxcd/terraform-provider-flux/pull/533), + [525](https://github.com/fluxcd/terraform-provider-flux/pull/525), + [524](https://github.com/fluxcd/terraform-provider-flux/pull/524) +- Fix typo + [522](https://github.com/fluxcd/terraform-provider-flux/pull/522) + ## 1.0.1 **Release date:** 2023-07-11 diff --git a/docs/resources/bootstrap_git.md b/docs/resources/bootstrap_git.md index 414f1604..9d44af21 100644 --- a/docs/resources/bootstrap_git.md +++ b/docs/resources/bootstrap_git.md @@ -42,7 +42,7 @@ resource "flux_bootstrap_git" "this" { - `secret_name` (String) Name of the secret the sync credentials can be found in or stored to. Defaults to `flux-system`. - `timeouts` (Attributes) (see [below for nested schema](#nestedatt--timeouts)) - `toleration_keys` (Set of String) List of toleration keys used to schedule the components pods onto nodes with matching taints. -- `version` (String) Flux version. Defaults to `v2.0.1`. +- `version` (String) Flux version. Defaults to `v2.1.0`. - `watch_all_namespaces` (Boolean) If true watch for custom resources in all namespaces. Defaults to `true`. ### Read-Only diff --git a/internal/utils/flux.go b/internal/utils/flux.go index c15aeac3..c6c8095c 100644 --- a/internal/utils/flux.go +++ b/internal/utils/flux.go @@ -16,4 +16,4 @@ limitations under the License. package utils -const DefaultFluxVersion string = "v2.0.1" +const DefaultFluxVersion string = "v2.1.0"