From 35f9451655c560a511219b1373d5f8a41ac162c0 Mon Sep 17 00:00:00 2001 From: Julien Blatecky Date: Fri, 13 Jan 2023 16:07:36 +0100 Subject: [PATCH] Upgrade version to 2.6.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- app/Chart.yaml | 2 +- src/commands/mod.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 445d699..75ca1c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1406,7 +1406,7 @@ dependencies = [ [[package]] name = "sirene" -version = "2.6.0" +version = "2.6.1" dependencies = [ "async-trait", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 9c3c80e..7db77a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sirene" -version = "2.6.0" +version = "2.6.1" authors = ["Julien Blatecky "] edition = "2021" diff --git a/app/Chart.yaml b/app/Chart.yaml index 12d5c70..bf28ae6 100644 --- a/app/Chart.yaml +++ b/app/Chart.yaml @@ -21,7 +21,7 @@ version: 0.1.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v2.6.0" +appVersion: "v2.6.1" dependencies: - name: postgresql diff --git a/src/commands/mod.rs b/src/commands/mod.rs index ad89aa4..580626c 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -11,7 +11,7 @@ use update::UpdateFlags; /// Sirene service used to update data in database /// and serve it through a HTTP REST API #[derive(Parser, Debug)] -#[clap(version = "2.6.0", author = "Julien Blatecky")] +#[clap(version = "2.6.1", author = "Julien Blatecky")] struct Opts { /// Path to the temp folder #[clap(long = "temp-folder", env, default_value = "./data/temp")]