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

+ 1 - 1
README.md

49
 Run it with the following options:
49
 Run it with the following options:
50
 
50
 
51
 ```
51
 ```
52
-icosahedron 0.1.0
52
+icosahedron 0.1.1
53
 Tyler Hallada <tyler@hallada.net>
53
 Tyler Hallada <tyler@hallada.net>
54
 Generates 3D icosahedra meshes
54
 Generates 3D icosahedra meshes
55
 
55
 

+ 1 - 1
src/bin.rs

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