Skip to content

Commit

Permalink
fix(version): fixed version number in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
robertohuertasm committed Nov 3, 2018
1 parent 438578e commit c8ffec0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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,7 +1,7 @@
[package]
name = "microserver"
description = "Simple ad-hoc server with SPA support based on Warp!. Excellent for testing React, Angular, Vue apps and the like."
version = "0.1.3"
version = "0.1.4"
authors = ["Roberto Huertas <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use clap::{App, Arg};

fn main() {
let matches = App::new("microserver")
.version("0.0.1")
.version("0.1.4")
.about("A micro server to run from your CLI with support for SPAs.\nBased on Warp!")
.author("Roberto Huertas <[email protected]>")
.arg(
Expand Down

0 comments on commit c8ffec0

Please sign in to comment.