Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## v0.7.28

### fix

- fix radp_exec_sudo and radp_exec not write log to file

## v0.7.27

### refactor
Expand Down
2 changes: 1 addition & 1 deletion packaging/copr/radp-bash-framework.spec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#----------------------------------------------------------------------------------------------------------------------#

Name: radp-bash-framework
Version: 0.7.27
Version: 0.7.28
Release: 1%{?dist}
Summary: Modular Bash framework with structured context

Expand Down
2 changes: 1 addition & 1 deletion packaging/obs/radp-bash-framework.spec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#----------------------------------------------------------------------------------------------------------------------#

Name: radp-bash-framework
Version: 0.7.27
Version: 0.7.28
Release: 1%{?dist}
Summary: Modular Bash framework with structured context

Expand Down
2 changes: 1 addition & 1 deletion src/main/shell/commands/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# @example version

# Application version - same as framework version
declare -gr gr_app_version="v0.7.27"
declare -gr gr_app_version="v0.7.28"

cmd_version() {
radp_get_fw_install_version
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

# 当前框架的版本
declare -gr gr_fw_version=v0.7.27
declare -gr gr_fw_version=v0.7.28

# 缓存当前正在执行的命令(即完整命令行)
declare -gra gra_command_line=("$0" "$@")
Loading