Skip to content

Commit af8ad73

Browse files
(master) set version numbers for crates
1 parent ff65c3d commit af8ad73

File tree

16 files changed

+46
-46
lines changed

16 files changed

+46
-46
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ thiserror = "1"
4646
anyhow = "1"
4747
lazy_static = "1.4"
4848

49-
shrs_core = { path = "crates/shrs_core" }
50-
shrs_line = { path = "crates/shrs_line" }
51-
shrs_lang = { path = "crates/shrs_lang" }
52-
shrs_job = { path = "crates/shrs_job" }
49+
shrs_core = { path = "crates/shrs_core", version = "0.0.1" }
50+
shrs_line = { path = "crates/shrs_line", version = "0.0.1" }
51+
shrs_lang = { path = "crates/shrs_lang", version = "0.0.1" }
52+
shrs_job = { path = "crates/shrs_job", version = "0.0.1" }
5353

5454
[dev-dependencies]
5555
rexpect = "0.5"

crates/shrs_core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs_core"
3-
version = "0.1.0"
3+
version = "0.0.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["MrPicklePinosaur"]
@@ -18,7 +18,7 @@ dirs = "5"
1818
anymap = "1.0.0-beta.2"
1919
multimap = "0.9"
2020

21-
shrs_job = { path = "../shrs_job" }
21+
shrs_job = { path = "../shrs_job", version = "0.0.1" }
2222

2323
pino_deref = "0.1"
2424

crates/shrs_job/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs_job"
3-
version = "0.1.0"
3+
version = "0.0.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["MrPicklePinosaur"]

crates/shrs_lang/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs_lang"
3-
version = "0.1.0"
3+
version = "0.0.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["MrPicklePinosaur"]
@@ -9,8 +9,8 @@ repository = "https://github.com/MrPicklePinosaur/shrs"
99
build = "build.rs"
1010

1111
[dependencies]
12-
shrs_core = { path = "../shrs_core" }
13-
shrs_job = { path = "../shrs_job" }
12+
shrs_core = { path = "../shrs_core", version = "0.0.1" }
13+
shrs_job = { path = "../shrs_job", version = "0.0.1" }
1414
lalrpop-util = { version = "0.19.8", features = ["lexer"] }
1515
regex = "1"
1616
nix = { version = "0.26", default-features = false, features = ["fs", "term", "process", "signal"]}

crates/shrs_line/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs_line"
3-
version = "0.1.0"
3+
version = "0.0.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["MrPicklePinosaur"]
@@ -17,8 +17,8 @@ arboard = "3.2.0"
1717

1818
anyhow = "1"
1919
thiserror = "1"
20-
shrs_core = { path = "../shrs_core" }
21-
shrs_vi = { path = "../shrs_vi" }
22-
shrs_utils = { path = "../shrs_utils" }
23-
shrs_lang = {path = "../shrs_lang"}
20+
shrs_core = { path = "../shrs_core", version = "0.0.1" }
21+
shrs_vi = { path = "../shrs_vi", version = "0.0.1" }
22+
shrs_utils = { path = "../shrs_utils", version = "0.0.1" }
23+
shrs_lang = {path = "../shrs_lang", version = "0.0.1" }
2424
# shrs_core = { path = "../shrs_utils" }

crates/shrs_utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "shrs_utils"
3-
version = "0.1.0"
3+
version = "0.0.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["MrPicklePinosaur"]
7-
description = "common utilities"
7+
description = "common utilities for shrs"
88
repository = "https://github.com/MrPicklePinosaur/sh.rs"
99

1010
[dependencies]

crates/shrs_vi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs_vi"
3-
version = "0.1.0"
3+
version = "0.0.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["MrPicklePinosaur"]

plugins/shrs_cd_tools/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "shrs_cd_tools"
3-
version = "0.1.0"
3+
version = "0.0.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["MrPicklePinosaur"]
77
description = "Variety of utilities for running commands conditionally on directory change"
88
repository = "https://github.com/MrPicklePinosaur/sh.rs"
99

1010
[dependencies]
11-
shrs = { path = "../../" }
11+
shrs = { path = "../../", version = "0.0.1" }
1212

1313
derive_builder = "0.12"
1414

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "shrs_command_timer"
3-
version = "0.1.0"
3+
version = "0.0.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["MrPicklePinosaur"]
77
description = "shrs plugin to time how long the previous command took to run"
88
repository = "https://github.com/MrPicklePinosaur/sh.rs"
99

1010
[dependencies]
11-
shrs = { path = "../../" }
11+
shrs = { path = "../../", version = "0.0.1" }

0 commit comments

Comments
 (0)