From 6b31cb102ab6ddf3571bc7e6fce2ed038c795fa2 Mon Sep 17 00:00:00 2001 From: Spencer Smith Date: Thu, 4 May 2023 10:48:20 -0400 Subject: [PATCH] release(v0.1.0-alpha.0): prepare release This is the official v0.1.0-alpha.0 release. Also adds the license header to files necessary for conform to pass. Signed-off-by: Spencer Smith --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ pkg/config/config.go | 4 ++++ pkg/s3/s3.go | 4 ++++ pkg/talos/talos.go | 4 ++++ 4 files changed, 41 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..21e4d95 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,29 @@ +## [talos-backup 0.1.0-alpha.0](https://github.com/siderolabs/talos-backup/releases/tag/v0.1.0-alpha.0) (2023-05-04) + +Welcome to the v0.1.0-alpha.0 release of talos-backup! + + + +Please try out the release binaries and report any issues at +https://github.com/siderolabs/talos-backup/issues. + +### Contributors + +* Spencer Smith +* Philipp Sauter + +### Changes +
4 commits +

+ +* [`2a79236`](https://github.com/siderolabs/talos-backup/commit/2a79236f469a68f53129420757e9a46136fd2001) feat: update mods, rekres, and combine everything under `talos-backup` +* [`200e485`](https://github.com/siderolabs/talos-backup/commit/200e485374684b0db644ee405b32aeee3ce67314) feat: etcd snapshot service for kubernetes +* [`e8e2910`](https://github.com/siderolabs/talos-backup/commit/e8e2910e3439b64d46e016a314d399924a84ffd6) chore: update name, version bump talos machinery +* [`b2a0b1c`](https://github.com/siderolabs/talos-backup/commit/b2a0b1c457325c212527d54666b399b9b935f3fc) feat: first commit and kressification +

+
+ +### Dependency Changes + +This release has no dependency changes + diff --git a/pkg/config/config.go b/pkg/config/config.go index 9ea461f..198014c 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -1,3 +1,7 @@ +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. + // Package config provides functions for parsing the // backup configs package config diff --git a/pkg/s3/s3.go b/pkg/s3/s3.go index ed91872..ffe55fb 100644 --- a/pkg/s3/s3.go +++ b/pkg/s3/s3.go @@ -1,3 +1,7 @@ +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. + // Package s3 provides functions for pushing a file to s3 package s3 diff --git a/pkg/talos/talos.go b/pkg/talos/talos.go index ce61e9b..2333c40 100644 --- a/pkg/talos/talos.go +++ b/pkg/talos/talos.go @@ -1,3 +1,7 @@ +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. + // Package talos provides functions for connecting to and // taking snapshots from a given talos cluster package talos