Skip to content

Commit d4c6525

Browse files
bump version numbers in preperation for 0.0.3 release
1 parent 1012e0f commit d4c6525

File tree

28 files changed

+70
-58
lines changed

28 files changed

+70
-58
lines changed

crates/shrs/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shrs"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
authors = ["MrPicklePinosaur"]
@@ -31,11 +31,11 @@ anyhow = "1"
3131
lazy_static = "1.4"
3232
log = "0.4"
3333

34-
shrs_core = { path = "../shrs_core", version = "^0.0.2" }
35-
shrs_line = { path = "../shrs_line", version = "^0.0.2" }
36-
shrs_lang = { path = "../shrs_lang", version = "^0.0.2" }
37-
shrs_job = { path = "../shrs_job", version = "^0.0.2" }
38-
shrs_utils = { path = "../shrs_utils", version = "^0.0.2" }
34+
shrs_core = { path = "../shrs_core", version = "^0.0.3" }
35+
shrs_line = { path = "../shrs_line", version = "^0.0.3" }
36+
shrs_lang = { path = "../shrs_lang", version = "^0.0.3" }
37+
shrs_job = { path = "../shrs_job", version = "^0.0.3" }
38+
shrs_utils = { path = "../shrs_utils", version = "^0.0.3" }
3939

4040
serde = { version = "1", features = ["derive"], optional = true }
4141

crates/shrs/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/shrs/0.0.2")]
1+
#![doc(html_root_url = "https://docs.rs/shrs/0.0.3")]
22

33
//! **shrs** is a framework for building and configuring your own shell in rust.
44
//!

crates/shrs_core/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_core"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "modular library to build your own shell in rust"
55

66
authors.workspace = true
@@ -26,8 +26,8 @@ dirs = "5"
2626
anymap = "1.0.0-beta.2"
2727
multimap = "0.9"
2828

29-
shrs_job = { path = "../shrs_job", version = "^0.0.2" }
30-
shrs_utils = { path = "../shrs_utils", version = "^0.0.2" }
29+
shrs_job = { path = "../shrs_job", version = "^0.0.3" }
30+
shrs_utils = { path = "../shrs_utils", version = "^0.0.3" }
3131

3232
pino_deref = "0.1"
3333

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.0.2"
3+
version = "0.0.3"
44
description = "utilities for managing jobs and processes"
55

66
authors.workspace = true

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.0.2"
3+
version = "0.0.3"
44
description = "parser and lexer for shrs posix shell"
55
build = "build.rs"
66

@@ -13,8 +13,8 @@ license.workspace = true
1313
repository.workspace = true
1414

1515
[dependencies]
16-
shrs_core = { path = "../shrs_core", version = "^0.0.2" }
17-
shrs_job = { path = "../shrs_job", version = "^0.0.2" }
16+
shrs_core = { path = "../shrs_core", version = "^0.0.3" }
17+
shrs_job = { path = "../shrs_job", version = "^0.0.3" }
1818
lalrpop-util = { version = "0.19.8", features = ["lexer"] }
1919
regex = "1"
2020
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.0.2"
3+
version = "0.0.3"
44
description = "readline implementation"
55

66
authors.workspace = true
@@ -21,8 +21,8 @@ arboard = "3.2.0"
2121

2222
anyhow = "1"
2323
thiserror = "1"
24-
shrs_core = { path = "../shrs_core", version = "^0.0.2" }
25-
shrs_vi = { path = "../shrs_vi", version = "^0.0.2" }
26-
shrs_utils = { path = "../shrs_utils", version = "^0.0.2" }
27-
shrs_lang = {path = "../shrs_lang", version = "^0.0.2" }
24+
shrs_core = { path = "../shrs_core", version = "^0.0.3" }
25+
shrs_vi = { path = "../shrs_vi", version = "^0.0.3" }
26+
shrs_utils = { path = "../shrs_utils", version = "^0.0.3" }
27+
shrs_lang = {path = "../shrs_lang", version = "^0.0.3" }
2828
# shrs_core = { path = "../shrs_utils" }

crates/shrs_utils/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_utils"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "utilities for shrs"
55

66
authors.workspace = true

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.0.2"
3+
version = "0.0.3"
44
description = "parser for vi like commands"
55
build = "build.rs"
66

design/release_process.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,15 @@ The officially supported plugins in `plugins/` should also follow the entire
66
projects version. All packages, without exception have their version bumped,
77
regardless if the crate actually had any meaniful update between the last
88
release.
9+
10+
First bump version of all packages in workspace (careful not to replace other package numbers)
11+
```sh
12+
fd -e toml . . | xargs sed -i 's/0\.0\.x/0\.0\.y/'
13+
```
14+
15+
Ensure the following are updates
16+
- package numbers
17+
- dependencies to packages
18+
- READMEs
19+
- docs
20+

docs/content/docs/getting-started/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ cd <project-name>
3636
Next, add shrs as a dependency in your `Cargo.toml`. shrs is still currently in pre-release, so there will be frequent updates. You can use the most recently published version with:
3737

3838
```toml
39-
shrs = { version = "0.0.2" }
39+
shrs = { version = "0.0.3" }
4040
```
4141

4242
Otherwise, if you wish to be on the bleeding edge, you can depend directly on the master branch (beware that there may be unexpected bugs and breaking API changes on master):

0 commit comments

Comments
 (0)