Skip to content

Commit

Permalink
Merge pull request #171 from azriel91/maintenance/release-0-12-0
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 authored Dec 29, 2023
2 parents 6e58244 + 0588260 commit 1ee4384
Show file tree
Hide file tree
Showing 6 changed files with 1,935 additions and 956 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## unreleased
## 0.0.12 (2023-12-30)

* Change `CmdOutcome` to be an `enum` indicating whether it is completed, interrupted, or erroneous. ([#141], [#163])
* Add `CmdBlock` trait to encompass one function for all items. ([#141], [#163])
Expand Down
54 changes: 27 additions & 27 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ members = [
]

[workspace.package]
version = "0.0.11"
version = "0.0.12"
authors = ["Azriel Hoh <[email protected]>"]
edition = "2021"
homepage = "https://peace.mk"
Expand All @@ -71,36 +71,36 @@ license = "MIT OR Apache-2.0"

[workspace.dependencies]
# Peace crates.
peace = { path = ".", version = "0.0.11", default-features = false }
peace = { path = ".", version = "0.0.12", default-features = false }

peace_cfg = { path = "crate/cfg", version = "0.0.11" }
peace_cmd_model = { path = "crate/cmd_model", version = "0.0.11" }
peace_cmd = { path = "crate/cmd", version = "0.0.11" }
peace_cmd_rt = { path = "crate/cmd_rt", version = "0.0.11" }
peace_code_gen = { path = "crate/code_gen", version = "0.0.11" }
peace_core = { path = "crate/core", version = "0.0.11" }
peace_data = { path = "crate/data", version = "0.0.11" }
peace_data_derive = { path = "crate/data_derive", version = "0.0.11" }
peace_diff = { path = "crate/diff", version = "0.0.11" }
peace_fmt = { path = "crate/fmt", version = "0.0.11" }
peace_params = { path = "crate/params", version = "0.0.11" }
peace_params_derive = { path = "crate/params_derive", version = "0.0.11" }
peace_resources = { path = "crate/resources", version = "0.0.11" }
peace_rt = { path = "crate/rt", version = "0.0.11" }
peace_rt_model = { path = "crate/rt_model", version = "0.0.11" }
peace_rt_model_core = { path = "crate/rt_model_core", version = "0.0.11" }
peace_rt_model_hack = { path = "crate/rt_model_hack", version = "0.0.11" }
peace_rt_model_native = { path = "crate/rt_model_native", version = "0.0.11" }
peace_rt_model_web = { path = "crate/rt_model_web", version = "0.0.11" }
peace_static_check_macros = { path = "crate/static_check_macros", version = "0.0.11" }
peace_cfg = { path = "crate/cfg", version = "0.0.12" }
peace_cmd_model = { path = "crate/cmd_model", version = "0.0.12" }
peace_cmd = { path = "crate/cmd", version = "0.0.12" }
peace_cmd_rt = { path = "crate/cmd_rt", version = "0.0.12" }
peace_code_gen = { path = "crate/code_gen", version = "0.0.12" }
peace_core = { path = "crate/core", version = "0.0.12" }
peace_data = { path = "crate/data", version = "0.0.12" }
peace_data_derive = { path = "crate/data_derive", version = "0.0.12" }
peace_diff = { path = "crate/diff", version = "0.0.12" }
peace_fmt = { path = "crate/fmt", version = "0.0.12" }
peace_params = { path = "crate/params", version = "0.0.12" }
peace_params_derive = { path = "crate/params_derive", version = "0.0.12" }
peace_resources = { path = "crate/resources", version = "0.0.12" }
peace_rt = { path = "crate/rt", version = "0.0.12" }
peace_rt_model = { path = "crate/rt_model", version = "0.0.12" }
peace_rt_model_core = { path = "crate/rt_model_core", version = "0.0.12" }
peace_rt_model_hack = { path = "crate/rt_model_hack", version = "0.0.12" }
peace_rt_model_native = { path = "crate/rt_model_native", version = "0.0.12" }
peace_rt_model_web = { path = "crate/rt_model_web", version = "0.0.12" }
peace_static_check_macros = { path = "crate/static_check_macros", version = "0.0.12" }

# Item crates
peace_items = { path = "items", version = "0.0.11" }
peace_items = { path = "items", version = "0.0.12" }

peace_item_blank = { path = "items/blank", version = "0.0.11" }
peace_item_file_download = { path = "items/file_download", version = "0.0.11" }
peace_item_sh_cmd = { path = "items/sh_cmd", version = "0.0.11" }
peace_item_tar_x = { path = "items/tar_x", version = "0.0.11" }
peace_item_blank = { path = "items/blank", version = "0.0.12" }
peace_item_file_download = { path = "items/file_download", version = "0.0.12" }
peace_item_sh_cmd = { path = "items/sh_cmd", version = "0.0.12" }
peace_item_tar_x = { path = "items/tar_x", version = "0.0.12" }

# Dependencies used by framework and item crates.
#
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Collect coverage and open `html` report.
1. Update crate versions.

```bash
sd -s 'version = "0.0.11"' 'version = "0.0.12"' $(fd -tf -F toml) README.md src/lib.rs
sd -s 'version = "0.0.12"' 'version = "0.0.13"' $(fd -tf -F toml) README.md src/lib.rs

# Make sure only `peace` crates are updated.
git --no-pager diff | rg '^[+]' | rg -v '(peace)|(\+\+\+)|\+version'
Expand Down
Loading

0 comments on commit 1ee4384

Please sign in to comment.