Skip to content

Commit 9db19ca

Browse files
Move vendor submodule to metis-sys (#29)
Will allow working crates even if not using the git workspace.
1 parent f9a1e1c commit 9db19ca

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "vendor/GKlib"]
2-
path = vendor/GKlib
2+
path = metis-sys/vendor/GKlib
33
url = https://github.com/KarypisLab/GKlib
44
[submodule "vendor/metis"]
5-
path = vendor/metis
5+
path = metis-sys/vendor/metis
66
url = https://github.com/KarypisLab/METIS

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Changelog
22

3+
## Version 0.2.1 (2024-03-10)
4+
5+
[metis-sys-0.2.0...0.2.1](https://github.com/LIHPC-Computational-Geometry/metis-rs/compare/metis-0.2.0...metis-0.2.1)
6+
7+
### Fixed
8+
9+
- move `vendor` library in `metis-sys` [#29](https://github.com/LIHPC-Computational-Geometry/metis-rs/pull/29)
10+
311
## Version 0.2.0 (2024-03-06)
4-
[metis-sys-0.2.1...HEAD](https://github.com/LIHPC-Computational-Geometry/metis-rs/compare/metis-0.1.2...metis-0.2.0)
12+
13+
[metis-sys-0.1.2...0.2.0](https://github.com/LIHPC-Computational-Geometry/metis-rs/compare/metis-0.1.2...metis-0.2.0)
514

615
### Added
716

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [".", "metis-sys"]
33

44
[package]
55
name = "metis"
6-
version = "0.2.0"
6+
version = "0.2.1"
77
authors = ["Hubert Hirtz <[email protected]>", "Cedric Chevalier <[email protected]>"]
88
edition = "2021"
99
license = "MIT OR Apache-2.0"

metis-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "metis-sys"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Hubert Hirtz <[email protected]>", "Cedric Chevalier <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

metis-sys/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fn build_lib() {
1212
use std::env;
1313
use std::path::PathBuf;
1414

15-
let vendor = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("../vendor");
15+
let vendor = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("vendor");
1616
println!("cargo:rerun-if-changed={}", vendor.display());
1717

1818
let mut build = cc::Build::new();
Submodule GKlib updated from 0000000 to 8bd6bad
Submodule metis updated from 0000000 to e0f1b88

0 commit comments

Comments
 (0)