Browse Source

Bumping version to 0.1.1 to test cargo updates

Tyler Hallada 4 years ago
parent
commit
cef9af81ae
3 changed files with 3 additions and 3 deletions
  1. 1 1
      Cargo.toml
  2. 1 1
      README.md
  3. 1 1
      src/bin.rs

+ 1 - 1
Cargo.toml

@@ -1,6 +1,6 @@
1 1
 [package]
2 2
 name = "icosahedron"
3
-version = "0.1.0"
3
+version = "0.1.1"
4 4
 authors = ["Tyler Hallada <tyler@hallada.net>"]
5 5
 edition = "2018"
6 6
 exclude = [

+ 1 - 1
README.md

@@ -49,7 +49,7 @@ To install, either run `cargo install icosahedron` or checkout the repo and run
49 49
 Run it with the following options:
50 50
 
51 51
 ```
52
-icosahedron 0.1.0
52
+icosahedron 0.1.1
53 53
 Tyler Hallada <tyler@hallada.net>
54 54
 Generates 3D icosahedra meshes
55 55
 

+ 1 - 1
src/bin.rs

@@ -168,7 +168,7 @@ fn main() {
168 168
     };
169 169
 
170 170
     let matches = clap_app!(icosahedron =>
171
-        (version: "0.1.0")
171
+        (version: "0.1.1")
172 172
         (author: "Tyler Hallada <tyler@hallada.net>")
173 173
         (about: "Generates 3D icosahedra meshes")
174 174
         (@arg truncated: -t --truncated "Generate truncated icosahedra (hexspheres).")