Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bparli committed Jan 2, 2021
1 parent 4053403 commit 54297ba
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 4 deletions.
78 changes: 78 additions & 0 deletions 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 = "convey"
version = "0.3.4"
version = "0.3.5"
authors = ["Ben Parli <bparli@gmail.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Layer 4 load balancer with dynamic configuration loading featuring proxy, passth

## Usage
```
Convey 0.3.0
Convey 0.3.5
Usage:
convey
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use self::config::Config;
use docopt::Docopt;

const USAGE: &str = "
Convey 0.3.4
Convey 0.3.5
Usage:
convey
Expand All @@ -36,7 +36,7 @@ Options:

fn main() {
env_logger::init();
let version = "0.3.4".to_owned();
let version = "0.3.5".to_owned();
let args = Docopt::new(USAGE)
.and_then(|dopt| dopt.version(Some(version)).parse())
.unwrap_or_else(|e| e.exit());
Expand Down

0 comments on commit 54297ba

Please sign in to comment.