File tree 4 files changed +21
-21
lines changed
honeycomb-core/src/cmap/builder 4 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ members = [
13
13
[workspace .package ]
14
14
edition = " 2024"
15
15
license = " MIT OR Apache-2.0"
16
- version = " 0.8.0 "
16
+ version = " 0.8.1 "
17
17
homepage = " https://lihpc-computational-geometry.github.io/honeycomb/"
18
18
repository = " https://github.com/LIHPC-Computational-Geometry/honeycomb"
19
19
readme = " README.md"
@@ -27,12 +27,12 @@ authors = [
27
27
28
28
[workspace .dependencies ]
29
29
# members
30
- honeycomb = { version = " 0.8.0 " , path = " ./honeycomb" }
31
- honeycomb-benches = { version = " 0.8.0 " , path = " ./benches" }
32
- honeycomb-core = { version = " 0.8.0 " , path = " ./honeycomb-core" }
33
- honeycomb-kernels = { version = " 0.8.0 " , path = " ./honeycomb-kernels" }
34
- honeycomb-examples = { version = " 0.8.0 " , path = " ./examples" }
35
- honeycomb-render = { version = " 0.8.0 " , path = " ./honeycomb-render" }
30
+ honeycomb = { version = " 0.8.1 " , path = " ./honeycomb" }
31
+ honeycomb-benches = { version = " 0.8.1 " , path = " ./benches" }
32
+ honeycomb-core = { version = " 0.8.1 " , path = " ./honeycomb-core" }
33
+ honeycomb-kernels = { version = " 0.8.1 " , path = " ./honeycomb-kernels" }
34
+ honeycomb-examples = { version = " 0.8.1 " , path = " ./examples" }
35
+ honeycomb-render = { version = " 0.8.1 " , path = " ./honeycomb-render" }
36
36
37
37
# common
38
38
clap = " 4.5.29"
Original file line number Diff line number Diff line change @@ -19,16 +19,16 @@ You can add `honeycomb` as a dependency of your project by adding the following
19
19
20
20
``` toml
21
21
# [dependencies]
22
- honeycomb = { git = " https://github.com/LIHPC-Computational-Geometry/honeycomb" , tag = " 0.8.0 " } # remove tag for master branch build
22
+ honeycomb = { git = " https://github.com/LIHPC-Computational-Geometry/honeycomb" , tag = " 0.8.1 " } # remove tag for master branch build
23
23
```
24
24
25
25
Alternatively, you can add the sub-crates that are currently published on crates.io:
26
26
27
27
``` toml
28
28
# [dependencies]
29
- honeycomb-core = " 0.8.0 "
30
- honeycomb-kernels = " 0.8.0 "
31
- honeycomb-render = " 0.8.0 "
29
+ honeycomb-core = " 0.8.1 "
30
+ honeycomb-kernels = " 0.8.1 "
31
+ honeycomb-render = " 0.8.1 "
32
32
```
33
33
34
34
## Project content
Original file line number Diff line number Diff line change @@ -561,11 +561,11 @@ mod cmap {
561
561
562
562
#[ cfg( test) ]
563
563
const BAD_METAS : [ & ' static str ; 9 ] = [
564
- "0.8.0 2" , // 2 elems
565
- "0.8.0 2 18 23" , // 4 elems
566
- "0.8.0 2.5 18" , // bad dim
567
- "0.8.0 2 hi" , // bad darts
568
- "0.8.0 bye 18" , // bad dim again
564
+ "0.8.1 2" , // 2 elems
565
+ "0.8.1 2 18 23" , // 4 elems
566
+ "0.8.1 2.5 18" , // bad dim
567
+ "0.8.1 2 hi" , // bad darts
568
+ "0.8.1 bye 18" , // bad dim again
569
569
"super super bad header" , // ...
570
570
" " , // "" + ' ' + "" + ' ' + ""
571
571
"" , // empty
@@ -576,7 +576,7 @@ mod cmap {
576
576
577
577
#[ cfg( test) ]
578
578
const MAP : & [ u8 ] = b"[META]
579
- 0.8.0 2 4
579
+ 0.8.1 2 4
580
580
581
581
[BETAS]
582
582
0 4 1 2 3
Original file line number Diff line number Diff line change @@ -38,16 +38,16 @@ You can add `honeycomb` as a dependency of your project by adding the following
38
38
39
39
``` toml
40
40
# [dependencies]
41
- honeycomb = { git = " https://github.com/LIHPC-Computational-Geometry/honeycomb" , tag = " 0.8.0 " } # remove tag for master branch build
41
+ honeycomb = { git = " https://github.com/LIHPC-Computational-Geometry/honeycomb" , tag = " 0.8.1 " } # remove tag for master branch build
42
42
```
43
43
44
44
Alternatively, you can add the sub-crates that are currently published on crates.io:
45
45
46
46
``` toml
47
47
# [dependencies]
48
- honeycomb-core = " 0.8.0 "
49
- honeycomb-kernels = " 0.8.0 "
50
- honeycomb-render = " 0.8.0 "
48
+ honeycomb-core = " 0.8.1 "
49
+ honeycomb-kernels = " 0.8.1 "
50
+ honeycomb-render = " 0.8.1 "
51
51
```
52
52
53
53
Note that if you want to access the latest changes and documentation, you may have to specify a commit instead of a
You can’t perform that action at this time.
0 commit comments