version 1.0.0 -> 1.1.0

This commit is contained in:
2020-04-13 01:41:43 +08:00
parent 484e7de833
commit 00fcac0e52
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -1055,7 +1055,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "oss-backupd"
version = "1.0.0"
version = "1.1.0"
dependencies = [
"argparse 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@@ -1,6 +1,6 @@
[package]
name = "oss-backupd"
version = "1.0.0"
version = "1.1.0"
authors = ["Hatter Jiang <jht5945@gmail.com>"]
edition = "2018"

View File

@@ -11,8 +11,8 @@ use rust_util::{
};
use chrono::Utc;
pub const NAME: &str = "oss-backupd";
pub const VERSION: &str = "1.0.0";
pub const NAME: &str = env!("CARGO_PKG_NAME");
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
const DOT_OSS_BACKUPD_CONFIG: &str = ".oss-backupd-config.json";
const OSS_BACKUPD_CONFIG: &str = "oss-backupd-config.json";