Skip to content

Commit 17278be

Browse files
authored
Merge pull request #201 from azriel91/maintenance/release-0-0-14
2 parents 39b0621 + 7f91fb6 commit 17278be

File tree

6 files changed

+66
-40
lines changed

6 files changed

+66
-40
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## unreleased
3+
## 0.0.14 (2025-01-18)
44

55
* Move `Cli*` types to `peace_cli` crate under `cli::output` module. ([#182], [#189])
66
* Move `OutputFormat` and `OutputFormatParseError` to `peace_cli_model` crate. ([#182], [#189])

Cargo.toml

+36-36
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ members = [
107107
]
108108

109109
[workspace.package]
110-
version = "0.0.13"
110+
version = "0.0.14"
111111
authors = ["Azriel Hoh <[email protected]>"]
112112
edition = "2021"
113113
homepage = "https://peace.mk"
@@ -119,45 +119,45 @@ license = "MIT OR Apache-2.0"
119119

120120
[workspace.dependencies]
121121
# Peace crates.
122-
peace = { path = ".", version = "0.0.13", default-features = false }
122+
peace = { path = ".", version = "0.0.14", default-features = false }
123123

124-
peace_cfg = { path = "crate/cfg", version = "0.0.13" }
125-
peace_cli = { path = "crate/cli", version = "0.0.13" }
126-
peace_cli_model = { path = "crate/cli_model", version = "0.0.13" }
127-
peace_cmd = { path = "crate/cmd", version = "0.0.13" }
128-
peace_cmd_model = { path = "crate/cmd_model", version = "0.0.13" }
129-
peace_cmd_rt = { path = "crate/cmd_rt", version = "0.0.13" }
130-
peace_code_gen = { path = "crate/code_gen", version = "0.0.13" }
131-
peace_core = { path = "crate/core", version = "0.0.13" }
132-
peace_data = { path = "crate/data", version = "0.0.13" }
133-
peace_data_derive = { path = "crate/data_derive", version = "0.0.13" }
134-
peace_diff = { path = "crate/diff", version = "0.0.13" }
135-
peace_flow_model = { path = "crate/flow_model", version = "0.0.13" }
136-
peace_fmt = { path = "crate/fmt", version = "0.0.13" }
137-
peace_params = { path = "crate/params", version = "0.0.13" }
138-
peace_params_derive = { path = "crate/params_derive", version = "0.0.13" }
139-
peace_item_model = { path = "crate/item_model", version = "0.0.13" }
140-
peace_resource_rt = { path = "crate/resource_rt", version = "0.0.13" }
141-
peace_rt = { path = "crate/rt", version = "0.0.13" }
142-
peace_rt_model = { path = "crate/rt_model", version = "0.0.13" }
143-
peace_rt_model_core = { path = "crate/rt_model_core", version = "0.0.13" }
144-
peace_rt_model_hack = { path = "crate/rt_model_hack", version = "0.0.13" }
145-
peace_rt_model_native = { path = "crate/rt_model_native", version = "0.0.13" }
146-
peace_rt_model_web = { path = "crate/rt_model_web", version = "0.0.13" }
147-
peace_static_check_macros = { path = "crate/static_check_macros", version = "0.0.13" }
148-
peace_value_traits = { path = "crate/value_traits", version = "0.0.13" }
149-
peace_webi = { path = "crate/webi", version = "0.0.13" }
150-
peace_webi_components = { path = "crate/webi_components", version = "0.0.13" }
151-
peace_webi_model = { path = "crate/webi_model", version = "0.0.13" }
152-
peace_webi_output = { path = "crate/webi_output", version = "0.0.13" }
124+
peace_cfg = { path = "crate/cfg", version = "0.0.14" }
125+
peace_cli = { path = "crate/cli", version = "0.0.14" }
126+
peace_cli_model = { path = "crate/cli_model", version = "0.0.14" }
127+
peace_cmd = { path = "crate/cmd", version = "0.0.14" }
128+
peace_cmd_model = { path = "crate/cmd_model", version = "0.0.14" }
129+
peace_cmd_rt = { path = "crate/cmd_rt", version = "0.0.14" }
130+
peace_code_gen = { path = "crate/code_gen", version = "0.0.14" }
131+
peace_core = { path = "crate/core", version = "0.0.14" }
132+
peace_data = { path = "crate/data", version = "0.0.14" }
133+
peace_data_derive = { path = "crate/data_derive", version = "0.0.14" }
134+
peace_diff = { path = "crate/diff", version = "0.0.14" }
135+
peace_flow_model = { path = "crate/flow_model", version = "0.0.14" }
136+
peace_fmt = { path = "crate/fmt", version = "0.0.14" }
137+
peace_params = { path = "crate/params", version = "0.0.14" }
138+
peace_params_derive = { path = "crate/params_derive", version = "0.0.14" }
139+
peace_item_model = { path = "crate/item_model", version = "0.0.14" }
140+
peace_resource_rt = { path = "crate/resource_rt", version = "0.0.14" }
141+
peace_rt = { path = "crate/rt", version = "0.0.14" }
142+
peace_rt_model = { path = "crate/rt_model", version = "0.0.14" }
143+
peace_rt_model_core = { path = "crate/rt_model_core", version = "0.0.14" }
144+
peace_rt_model_hack = { path = "crate/rt_model_hack", version = "0.0.14" }
145+
peace_rt_model_native = { path = "crate/rt_model_native", version = "0.0.14" }
146+
peace_rt_model_web = { path = "crate/rt_model_web", version = "0.0.14" }
147+
peace_static_check_macros = { path = "crate/static_check_macros", version = "0.0.14" }
148+
peace_value_traits = { path = "crate/value_traits", version = "0.0.14" }
149+
peace_webi = { path = "crate/webi", version = "0.0.14" }
150+
peace_webi_components = { path = "crate/webi_components", version = "0.0.14" }
151+
peace_webi_model = { path = "crate/webi_model", version = "0.0.14" }
152+
peace_webi_output = { path = "crate/webi_output", version = "0.0.14" }
153153

154154
# Item crates
155-
peace_items = { path = "items", version = "0.0.13" }
155+
peace_items = { path = "items", version = "0.0.14" }
156156

157-
peace_item_blank = { path = "items/blank", version = "0.0.13" }
158-
peace_item_file_download = { path = "items/file_download", version = "0.0.13" }
159-
peace_item_sh_cmd = { path = "items/sh_cmd", version = "0.0.13" }
160-
peace_item_tar_x = { path = "items/tar_x", version = "0.0.13" }
157+
peace_item_blank = { path = "items/blank", version = "0.0.14" }
158+
peace_item_file_download = { path = "items/file_download", version = "0.0.14" }
159+
peace_item_sh_cmd = { path = "items/sh_cmd", version = "0.0.14" }
160+
peace_item_tar_x = { path = "items/tar_x", version = "0.0.14" }
161161

162162
# Dependencies used by framework and item crates.
163163
#

DEVELOPMENT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Collect coverage and open `html` report.
4141
1. Update crate versions.
4242

4343
```bash
44-
sd -s 'version = "0.0.13"' 'version = "0.0.14"' $(fd -tf -F toml) README.md src/lib.rs
44+
sd -s 'version = "0.0.15"' 'version = "0.0.15"' $(fd -tf -F toml) README.md src/lib.rs
4545

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

doc/src/learning_material/peace_zero_stress_automation.md

+26
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,32 @@
2525

2626
<div class="hidden">
2727

28+
### Building `envman` in Nushell
29+
30+
```nu
31+
# in $nu.config-path
32+
# usually C:\Users\$env.USER\AppData\Roaming\nushell\config.nu
33+
def envman_demo_prepare_release [] {
34+
cargo envman_build_release
35+
let envman_demo_dir = [$env.TEMP demo envman] | path join
36+
if not ($envman_demo_dir | path exists) {
37+
mkdir $envman_demo_dir
38+
}
39+
40+
let envman_exe_path = [target release envman.exe] | path join
41+
cp -f $envman_exe_path $envman_demo_dir
42+
echo $"Copied ($envman_exe_path) to ($envman_demo_dir)"
43+
44+
let envman_pkg_dir = [target web envman pkg] | path join
45+
cp -f --recursive $envman_pkg_dir $envman_demo_dir
46+
}
47+
48+
# then
49+
envman_demo_prepare_release
50+
cd ([$env.TEMP demo envman] | path join)
51+
```
52+
53+
2854
### Notes
2955

3056
1. Heya everyone, my name is Azriel, and today I'll be showing you my automation side project, called Peace.

examples/download/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "download"
3-
version = "0.0.13"
3+
version = "0.0.14"
44
authors = ["Azriel Hoh <[email protected]>"]
55
edition = "2021"
66
description = "Peace framework file download example"

examples/envman/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "envman"
3-
version = "0.0.13"
3+
version = "0.0.14"
44
authors = ["Azriel Hoh <[email protected]>"]
55
edition = "2021"
66
description = "Peace framework web application lifecycle example"

0 commit comments

Comments
 (0)