Skip to content

Commit

Permalink
update version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPicklePinosaur committed Nov 13, 2023
1 parent 46cca15 commit b41dadd
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 7 deletions.
2 changes: 1 addition & 1 deletion crates/shrs/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/shrs/0.0.1")]
#![doc(html_root_url = "https://docs.rs/shrs/0.0.2")]

//! **shrs** is a framework for building and configuring your own shell in rust.
//!
Expand Down
29 changes: 29 additions & 0 deletions dev/scripts/publish
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash

crates=(
shrs_core
shrs_job
shrs_lang
shrs_line
shrs_utils
shrs_vi
shrs
)
plugins=(
shrs_autocd
shrs_cd_stack
shrs_cd_tools
shrs_command_timer
shrs_derive_completion
shrs_file_logger
shrs_mux
shrs_output_capture
shrs_run_context
)

#for crate in "${crates[@]}"; do
# echo "Publishing $crate"
# cargo publish -p $crate
#done

cargo smart-release --no-changelog --no-tag --execute "${crates[@]}" "${plugins[@]}"
2 changes: 1 addition & 1 deletion plugins/shrs_autocd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This is a plugin for [shrs](https://github.com/MrPicklePinosaur/shrs).

First add this plugin to your dependencies
```toml
shrs_autocd = { version = "0.0.1" }
shrs_autocd = { version = "0.0.2" }
```

Then include this plugin when initializing shrs
Expand Down
2 changes: 1 addition & 1 deletion plugins/shrs_cd_stack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This is a plugin for [shrs](https://github.com/MrPicklePinosaur/shrs).

First add this plugin to your dependencies
```toml
shrs_cd_stack = { version = "0.0.1" }
shrs_cd_stack = { version = "0.0.2" }
```

Then include this plugin when initializing shrs
Expand Down
2 changes: 1 addition & 1 deletion plugins/shrs_command_timer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This is a plugin for [shrs](https://github.com/MrPicklePinosaur/shrs).

First add this plugin to your dependencies
```toml
shrs_command_timer = { version = "0.0.1" }
shrs_command_timer = { version = "0.0.2" }
```

Then include this plugin when initializing shrs
Expand Down
2 changes: 1 addition & 1 deletion plugins/shrs_file_logger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This is a plugin for [shrs](https://github.com/MrPicklePinosaur/shrs).

First add this plugin to your dependencies
```toml
shrs_file_logger = { version = "0.0.1" }
shrs_file_logger = { version = "0.0.2" }
```

Then include this plugin when initializing shrs
Expand Down
2 changes: 1 addition & 1 deletion plugins/shrs_mux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This is a plugin for [shrs](https://github.com/MrPicklePinosaur/shrs).

First add this plugin to your dependencies
```toml
shrs_mux = { version = "0.0.1" }
shrs_mux = { version = "0.0.2" }
```

Then include this plugin when initializing shrs
Expand Down
2 changes: 1 addition & 1 deletion plugins/shrs_output_capture/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This is a plugin for [shrs](https://github.com/MrPicklePinosaur/shrs).

First add this plugin to your dependencies
```toml
shrs_output_capture = { version = "0.0.1" }
shrs_output_capture = { version = "0.0.2" }
```

Then include this plugin when initializing shrs
Expand Down

0 comments on commit b41dadd

Please sign in to comment.