From 134e2e8693ff6fc7ed3e0f43b48ffb8909ddc518 Mon Sep 17 00:00:00 2001 From: mb Date: Fri, 30 Sep 2022 18:03:23 +0200 Subject: [PATCH 1/3] fixed tag formatting failing mnte parsing --- src/push.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/push.rs b/src/push.rs index a1a2a79..c750f2f 100644 --- a/src/push.rs +++ b/src/push.rs @@ -10,7 +10,7 @@ use crate::{ pub fn main(message: Option) { let message = message.unwrap_or_else(|| Utc::now().format("pi - %d/%m/%Y %H:%M").to_string()); let timestamp = Utc::now().timestamp(); - let suffix = format!("pi-{timestamp}"); + let suffix = format!("pi{timestamp}"); let tag = Config::get_local() .unwrap_or_else(|| { log_error( From d8d0172d3341aa082f853fc4300393453c51bbbd Mon Sep 17 00:00:00 2001 From: mb Date: Fri, 30 Sep 2022 18:04:27 +0200 Subject: [PATCH 2/3] version bump --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e428f9e..66f44c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "epitls-pi" -version = "1.2.0" +version = "1.2.1" edition = "2021" license = "GPL-3.0+" description = "A little helper tool meant to ease the developpment of the C piscine at EPITA/Toulouse." From 2f71ed5e03d2a532e53a1b7b4de57c2fe682a473 Mon Sep 17 00:00:00 2001 From: mb Date: Fri, 30 Sep 2022 18:11:27 +0200 Subject: [PATCH 3/3] updated lock --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 39be08d..231bdb2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -138,7 +138,7 @@ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" [[package]] name = "epitls-pi" -version = "1.2.0" +version = "1.2.1" dependencies = [ "chrono", "clap",