Skip to content

Commit 6e7620f

Browse files
committed
chore: bump packages versions in manifests and docs
1 parent 5dba39a commit 6e7620f

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
[workspace.package]
1414
edition = "2024"
1515
license = "MIT OR Apache-2.0"
16-
version = "0.8.0"
16+
version = "0.8.1"
1717
homepage = "https://lihpc-computational-geometry.github.io/honeycomb/"
1818
repository = "https://github.com/LIHPC-Computational-Geometry/honeycomb"
1919
readme = "README.md"
@@ -27,12 +27,12 @@ authors = [
2727

2828
[workspace.dependencies]
2929
# 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" }
3636

3737
# common
3838
clap = "4.5.29"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ You can add `honeycomb` as a dependency of your project by adding the following
1919

2020
```toml
2121
# [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
2323
```
2424

2525
Alternatively, you can add the sub-crates that are currently published on crates.io:
2626

2727
```toml
2828
# [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"
3232
```
3333

3434
## Project content

honeycomb-core/src/cmap/builder/tests.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -561,11 +561,11 @@ mod cmap {
561561

562562
#[cfg(test)]
563563
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
569569
"super super bad header", // ...
570570
" ", // "" + ' ' + "" + ' ' + ""
571571
"", // empty
@@ -576,7 +576,7 @@ mod cmap {
576576

577577
#[cfg(test)]
578578
const MAP: &[u8] = b"[META]
579-
0.8.0 2 4
579+
0.8.1 2 4
580580
581581
[BETAS]
582582
0 4 1 2 3

user-guide/src/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@ You can add `honeycomb` as a dependency of your project by adding the following
3838

3939
```toml
4040
# [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
4242
```
4343

4444
Alternatively, you can add the sub-crates that are currently published on crates.io:
4545

4646
```toml
4747
# [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"
5151
```
5252

5353
Note that if you want to access the latest changes and documentation, you may have to specify a commit instead of a

0 commit comments

Comments
 (0)