From d6d1d69e616cd89b7dfcfa00f330b1c9cb570ef3 Mon Sep 17 00:00:00 2001 From: lauralani Date: Fri, 7 Jul 2023 09:32:46 +0200 Subject: [PATCH] bump version to v0.1.1 --- CHANGELOG.md | 15 +++++++++++++++ constants/constants.go | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f32d21e..395a60a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - tbd +## [v0.1.1] - 2023-06-07 + +### Added +- shortflag for using different config file +- config option `mastodon.visibility` to set post visibility +- config validation for `mastodon.visibility` +- systemd service file in `examples/` +- `--version` and `-v` cli flags to display the current version + +### Removed +- cli option to generate bash completion file + ## [v0.1.0] - 2023-06-07 ### Added @@ -16,4 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Postgres as Database and queue + +[unreleased]: https://codeberg.org/lauralani/humble-bot/compare/v0.1.1...HEAD +[v0.1.1]: https://codeberg.org/lauralani/humble-bot/compare/v0.1.0...v0.1.1 [v0.1.0]: https://codeberg.org/lauralani/humble-bot/releases/tag/v0.1.0 \ No newline at end of file diff --git a/constants/constants.go b/constants/constants.go index 329cdae..a186958 100644 --- a/constants/constants.go +++ b/constants/constants.go @@ -6,7 +6,7 @@ package constants -var AppVersion = "0.1.0" +var AppVersion = "0.1.1" var HumbleCategories = []string{"games", "books", "software"}