File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed
Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,17 @@ Change log dates follow the ISO 8601 standard (YEAR-MONTH-DAY).
55
66## [ Unreleased]
77
8+ ## [ 1.0.8] - 2023-11-05
9+ Some small project level improvements.
10+
11+ ### Changed
12+ Updated Rust edition from ` 2018 ` to ` 2021 ` .
13+
814## [ 1.0.7] - 2023-11-04
915Some small project level improvements.
1016
1117### Added
12- - Start using rustfmt in the crate.
18+ - Started using rustfmt in the crate.
1319
1420## [ 1.0.6] - 2023-11-04
1521Some small project level improvements.
Original file line number Diff line number Diff line change 11[package ]
22name = " cgwavefront_obj"
3- version = " 1.0.7 "
3+ version = " 1.0.8 "
44authors = [" LambdaXymox <lambda.xymox@gmail.com>" ]
55edition = " 2021"
66readme = " README.md"
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Letter ::= 'a' | 'b' | 'c' | 'd' | 'e' | 'f' | 'g' | 'h' | 'i' | 'j'
3232String ::= [Letter]+ [Digit | Letter]*
3333Digits ::= [Digit]+
3434Comment ::= '#' String '\n'
35- Whitespace ::= [' ' | '\t' | '\n' | Comment]+
35+ Whitespace ::= [' ' | '\t' | Comment]+
3636Number ::= ['-'] Digits
3737Float ::= Number '.' Digits
3838Vertex ::= 'v' Float Float Float [Float]
@@ -82,7 +82,7 @@ Letter ::= 'a' | 'b' | 'c' | 'd' | 'e' | 'f' | 'g' | 'h' | 'i' | 'j
8282 | 'U' | 'V' | 'W' | 'X' | 'Y' | 'Z'
8383String ::= [Letter]+ [Digit | Letter]*
8484Digits ::= [Digit]+
85- Whitespace ::= [' ' | '\t' | '\n' ]+
85+ Whitespace ::= [' ' | '\t' ]+
8686Number ::= Digits
8787Float ::= Number '.' Digits
8888NewMtl ::= "newmtl"
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Add the following line to your `Cargo.toml` file
2424
2525``` toml
2626[dependencies ]
27- wavefront_obj = " 1.0.7 "
27+ wavefront_obj = " 1.0.8 "
2828```
2929
3030to import the library. Include the line
You can’t perform that action at this time.
0 commit comments