Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Nov 15, 2020
1 parent 04d575d commit 20187e0
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 2 deletions.
File renamed without changes.
16 changes: 16 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Version 0.2.0 (2020-10-31)
==========================

- Use relative & closed paths


Version 0.1.1 (2020-10-31)
==========================

- SVG namespace


Version 0.1.0 (2020-10-31)
==========================

- Initial release
2 changes: 1 addition & 1 deletion cmdapp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vtracer"
version = "0.1.1"
version = "0.2.0"
authors = ["Chris Tsang <tyt2y7@gmail.com>"]
edition = "2018"
description = "A cmd app to convert images into vector graphics."
Expand Down
3 changes: 2 additions & 1 deletion cmdapp/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ fn path_simplify_mode_from_str(s: &str) -> PathSimplifyMode {

impl Config {
pub fn from_args() -> Self {
let app = App::new("visioncortex VTracer").about("A cmd app to convert images into vector graphics.");
let app = App::new("visioncortex VTracer ".to_owned() + env!("CARGO_PKG_VERSION"))
.about("A cmd app to convert images into vector graphics.");

let app = app.arg(Arg::with_name("input")
.long("input")
Expand Down
3 changes: 3 additions & 0 deletions docs/COPYRIGHT
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Copyright (c) 2020 Tsang Hao Fung

All Rights Reserved

0 comments on commit 20187e0

Please sign in to comment.