-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove dev version * bump all package version * all packages inherit from workspace
- Loading branch information
1 parent
bf47c7c
commit c2af0c5
Showing
20 changed files
with
199 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
# Release Workflow | ||
|
||
The version of all packages in the workspace should be bumped after a release. | ||
The officially supported plugins in `plugins/` should also follow the entire | ||
projects version. All packages, without exception have their version bumped, | ||
regardless if the crate actually had any meaniful update between the last | ||
release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
[package] | ||
name = "shrs_autocd" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["MrPicklePinosaur"] | ||
version = "0.0.2" | ||
description = "implement autocd feature present in many shells" | ||
homepage = "https://mrpicklepinosaur.github.io/shrs/" | ||
categories = ["command-line-interface", "command-line-utilities", "development-tools"] | ||
keywords = ["shrs", "shell", "posix", "unix"] | ||
readme = "README.md" | ||
repository = "https://github.com/MrPicklePinosaur/shrs" | ||
|
||
authors.workspace = true | ||
categories.workspace = true | ||
edition.workspace = true | ||
homepage.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
shrs = { path = "../../crates/shrs", version = "0.0.1" } | ||
shrs = { path = "../../crates/shrs", version = "0.0.2" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
[package] | ||
name = "shrs_cd_stack" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["MrPicklePinosaur"] | ||
version = "0.0.2" | ||
description = "maintain stack of past working directories" | ||
homepage = "https://mrpicklepinosaur.github.io/shrs/" | ||
categories = ["command-line-interface", "command-line-utilities", "development-tools"] | ||
keywords = ["shrs", "shell", "posix", "unix"] | ||
readme = "README.md" | ||
repository = "https://github.com/MrPicklePinosaur/shrs" | ||
|
||
authors.workspace = true | ||
categories.workspace = true | ||
edition.workspace = true | ||
homepage.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
shrs = { path = "../../crates/shrs", version = "0.0.1" } | ||
shrs = { path = "../../crates/shrs", version = "0.0.2" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
[package] | ||
name = "shrs_command_timer" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["MrPicklePinosaur"] | ||
version = "0.0.2" | ||
description = "shrs plugin to time how long the previous command took to run" | ||
homepage = "https://mrpicklepinosaur.github.io/shrs/" | ||
categories = ["command-line-interface", "command-line-utilities", "development-tools"] | ||
keywords = ["shrs", "shell", "posix", "unix"] | ||
readme = "README.md" | ||
repository = "https://github.com/MrPicklePinosaur/shrs" | ||
|
||
authors.workspace = true | ||
categories.workspace = true | ||
edition.workspace = true | ||
homepage.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
shrs = { path = "../../crates/shrs", version = "0.0.1" } | ||
shrs = { path = "../../crates/shrs", version = "0.0.2" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
[package] | ||
name = "shrs_file_logger" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["MrPicklePinosaur"] | ||
description = "generate debug logs for shrs" | ||
homepage = "https://mrpicklepinosaur.github.io/shrs/" | ||
categories = ["command-line-interface", "command-line-utilities", "development-tools"] | ||
keywords = ["shrs", "shell", "posix", "unix"] | ||
version = "0.0.2" | ||
description = "" | ||
readme = "README.md" | ||
repository = "https://github.com/MrPicklePinosaur/shrs" | ||
|
||
authors.workspace = true | ||
categories.workspace = true | ||
edition.workspace = true | ||
homepage.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
shrs = { path = "../../crates/shrs", version = "0.0.1" } | ||
shrs = { path = "../../crates/shrs", version = "0.0.2" } | ||
|
||
log4rs = { version = "1.2" } | ||
log = { version = "0.4" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
[package] | ||
name = "shrs_lang_options" | ||
version = "0.0.1" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["nithinmuthukumar"] | ||
description = "nushell command language for shrs" | ||
homepage = "https://mrpicklepinosaur.github.io/shrs/" | ||
categories = ["command-line-interface", "command-line-utilities", "development-tools"] | ||
keywords = ["shrs", "shell", "posix", "unix"] | ||
version = "0.0.2" | ||
description = "" | ||
readme = "README.md" | ||
repository = "https://github.com/MrPicklePinosaur/shrs" | ||
|
||
authors.workspace = true | ||
categories.workspace = true | ||
edition.workspace = true | ||
homepage.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
shrs = { path = "../../crates/shrs", version = "0.0.1" } | ||
shrs_mux = {path = "../shrs_mux/", version = "0.0.1"} | ||
shrs = { path = "../../crates/shrs", version = "0.0.2" } | ||
shrs_mux = {path = "../shrs_mux/", version = "0.0.2"} | ||
|
Oops, something went wrong.