Skip to content

Commit c8ffec0

Browse files
fix(version): fixed version number in cli
1 parent 438578e commit c8ffec0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "microserver"
33
description = "Simple ad-hoc server with SPA support based on Warp!. Excellent for testing React, Angular, Vue apps and the like."
4-
version = "0.1.3"
4+
version = "0.1.4"
55
authors = ["Roberto Huertas <[email protected]>"]
66
edition = "2018"
77
license = "MIT"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use clap::{App, Arg};
77

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

0 commit comments

Comments
 (0)