Skip to content

Commit

Permalink
Merge pull request #185 from azriel91/maintenance/release-0-0-13
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 authored Feb 3, 2024
2 parents 9836dd3 + f14e4f5 commit d19fa77
Show file tree
Hide file tree
Showing 7 changed files with 257 additions and 205 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.13 (2024-02-03)

* Provide more accurate feedback about interruption on CLI. ([#172], [#173])
* Remove requirement to import `peace::cfg::AppName` when using `app_name!("..")` macro. ([#157], [#176])
Expand Down
56 changes: 28 additions & 28 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.12"
version = "0.0.13"
authors = ["Azriel Hoh <azriel91@gmail.com>"]
edition = "2021"
homepage = "https://peace.mk"
Expand All @@ -71,37 +71,37 @@ license = "MIT OR Apache-2.0"

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

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

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

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" }
peace_item_blank = { path = "items/blank", version = "0.0.13" }
peace_item_file_download = { path = "items/file_download", version = "0.0.13" }
peace_item_sh_cmd = { path = "items/sh_cmd", version = "0.0.13" }
peace_item_tar_x = { path = "items/tar_x", version = "0.0.13" }

# 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.12"' 'version = "0.0.13"' $(fd -tf -F toml) README.md src/lib.rs
sd -s 'version = "0.0.13"' 'version = "0.0.14"' $(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
6 changes: 3 additions & 3 deletions crate/rt_model/src/params_specs_serializer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ impl<E> ParamsSpecsSerializer<E>
where
E: std::error::Error + From<Error> + Send,
{
/// Returns the [`ParamsSpecs`] of all [`Item`]s if it exists on disk.
/// Serializes the [`ParamsSpecs`] of all [`Item`]s to disk.
///
/// # Parameters:
///
/// * `storage`: `Storage` to read from.
/// * `params_specs`: ParamsSpecs to serialize.
/// * `storage`: `Storage` to write to.
/// * `params_specs`: `ParamsSpecs` to serialize.
/// * `params_specs_file`: Path to save the serialized params_specs to.
///
/// [`Item`]: peace_cfg::Item
Expand Down
Loading

0 comments on commit d19fa77

Please sign in to comment.