docs: changelog

This commit is contained in:
Jack Wills
2022-10-16 01:35:32 +00:00
parent f4a72d78d2
commit 24a7911833
2 changed files with 16 additions and 11 deletions
+12 -1
View File
@@ -1,7 +1,18 @@
### Chores
+ Cargo update, [c3e72ae7369a25d903f39e55a4349cb005671dd4]
+ create_release.sh v0.1.0, [3c8d59c666bd4cda9ca54989b2f1b48bba17bc57]
### Features
+ Show container name in log panel title, [9cb0c414afc284947fc2b8494504387e4e7edd87]
+ use gui_state HashSet to keep track of application state, [9e9d51559a13944622abf4fcbd3bd63766d11467]
+ terminal.clear() after run_app finished, [67c49575682cb271fac0998ff377a6504cd0bc86]
### Refactors
+ CpuStats & MemStats use tuple struct, [a060d032586a0707ac91cb13d922aae0850449c5]
# <a href='https://github.com/mrjackwills/oxker/releases/tag/v0.1.5'>v0.1.5</a>
### 2022-10-07
### Chores
+ Update clap to v4, [15597dbe](https://github.com/mrjackwills/oxker/commit/15597dbe6942ec053541398ce0e9dedc10a4d3ea),
+4 -10
View File
@@ -1,9 +1,8 @@
#!/bin/bash
# rust create_release
# v0.1.0
# v0.1.1
PACKAGE_NAME='oxker'
STAR_LINE='****************************************'
CWD=$(pwd)
@@ -20,11 +19,6 @@ error_close() {
exit 1
}
if [ -z "$PACKAGE_NAME" ]
then
error_close "No package name"
fi
# $1 string - question to ask
ask_yn () {
printf "%b%s? [y/N]:%b " "${GREEN}" "$1" "${RESET}"
@@ -228,7 +222,7 @@ release_flow() {
release_continue "git add ."
git add .
release_continue "git commit -mg \"chore: release \"${NEW_TAG_WITH_V}\""
release_continue "git commit -m \"chore: release \"${NEW_TAG_WITH_V}\""
git commit -m "chore: release ${NEW_TAG_WITH_V}"
release_continue "git checkout main"
@@ -246,8 +240,8 @@ release_flow() {
release_continue "git checkout dev"
git checkout dev
release_continue "git merge --no-ff main -m 'chore: merge main into dev'"
git merge --no-ff main -m 'chore: merge main into dev'
release_continue "git merge --no-ff main -m \"chore: merge main into dev\""
git merge --no-ff main -m "chore: merge main into dev"
release_continue "git push origin dev"
git push origin dev