Skip to content

Commit b2f08c0

Browse files
committed
build: update versions for initial preview release
Bump the versions to >0 to ensure we do not fall into the minor-version special-case of crates.io. Update the other version dependencies to reflect the code-base. Signed-off-by: David Rheinsberg <[email protected]>
1 parent 7b66d3d commit b2f08c0

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ homepage = "https://www.bus1.eu"
2222
license = "MIT OR Apache-2.0 OR LGPL-2.1-or-later"
2323
readme = "README.md"
2424
repository = "https://github.com/bus1/sys"
25-
rust-version = "1.83"
25+
rust-version = "1.74"
2626

2727
[workspace.dependencies]
28-
libc = { default-features = false, version = "0.2.172" }
29-
osi = { path = "./lib/osi", version = "0.0.1" }
30-
sys = { path = "./lib/sys", version = "0.0.1" }
31-
tmp = { path = "./lib/tmp", version = "0.0.1" }
28+
libc = { default-features = false, version = "0.2.175" }
29+
osi = { path = "./lib/osi", version = "1.0.0" }
30+
sys = { path = "./lib/sys", version = "1.0.0" }
31+
tmp = { path = "./lib/tmp", version = "1.0.0" }
3232

3333
[workspace.lints.clippy]
3434
identity_op = "allow"

lib/osi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "osi"
3-
version = "0.0.1"
3+
version = "1.0.0"
44

55
description = "Capability-based Standard Interfaces"
66
keywords = [

lib/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 = "sys"
3-
version = "0.0.1"
3+
version = "1.0.0"
44

55
description = "Capability-based System Interfaces"
66
keywords = [

lib/tmp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tmp"
3-
version = "0.0.1"
3+
version = "1.0.0"
44

55
description = "Capability-based Preview Interfaces"
66
keywords = [

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ project(
99
],
1010
license: 'MIT OR Apache-2.0 OR LGPL-2.1-or-later',
1111
meson_version: '>=1.3',
12-
version: '1',
12+
version: '1.0.0',
1313
)
1414

1515
add_languages('rust', native: false)

0 commit comments

Comments
 (0)