Skip to content

Commit

Permalink
lohr: v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alarsyo committed Mar 31, 2021
1 parent 1506ce1 commit 29c0a4a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lohr"
version = "0.3.2"
version = "0.3.3"
authors = ["Antoine Martin <[email protected]>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use std::sync::{
use std::thread;

use anyhow::Context;
use clap::{App, Arg};
use clap::{App, Arg, crate_version};
use log::{error, info};
use rocket::{http::Status, post, routes, State};

Expand Down Expand Up @@ -94,7 +94,7 @@ fn parse_config(home: &Path, flags: &clap::ArgMatches) -> anyhow::Result<GlobalS

fn main() -> anyhow::Result<()> {
let matches = App::new("lohr")
.version("0.3.2")
.version(crate_version!())
.about("Git mirroring daemon")
.arg(
Arg::with_name("config")
Expand Down

0 comments on commit 29c0a4a

Please sign in to comment.