Skip to content

Commit 83d093d

Browse files
committed
Bump version to 1.0.2 and update changelog with new log management features
1 parent b4e394d commit 83d093d

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
push: true
2828
tags: |
2929
codjix/codjixd:latest
30-
codjix/codjixd:1.0.1
30+
codjix/codjixd:1.0.2

CHANGES.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# Changelog
22

3-
## `1.0.1` - 2025/01/11
3+
<details open>
4+
<summary> 1.0.2 - 2025/01/27</summary>
5+
6+
- `New` Ability to view old logs with the `logs` command.
7+
- `New` Separate live logs method with the `logs` command.
8+
- `New` Ability to delete logs with the `logs` command.
9+
10+
</details>
11+
12+
<details>
13+
<summary> 1.0.1 - 2025/01/11</summary>
414

515
- `New` Docker image for Codjixd.
616
- `New` Kill command to stop services and their dependencies recursively.
@@ -9,3 +19,5 @@
919
- `Fix` Health check loop is delayed 5 seconds by default to avoid high CPU usage.
1020
- `Fix` Health check logs are directed to logs file.
1121
- `Fix` Major update to the logs command and enable the access to old logs.
22+
23+
</details>

codjixd.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ BASE_DIR="${BASE_DIR:-/opt/codjixd}"
66
LOG_DIR="${LOG_DIR:-${BASE_DIR}/logs}"
77
PID_DIR="${PID_DIR:-${BASE_DIR}/pids}"
88
SERVICES_DIR="${SERVICES_DIR:-${BASE_DIR}/services}"
9-
VERSION="1.0.1"
9+
VERSION="1.0.2"
1010

1111
# Load configuration file if it exists
1212
[ -f "$CONFIG_FILE" ] && source "$CONFIG_FILE"

0 commit comments

Comments
 (0)