diff --git a/.github/workflows/github-release-draft.yml b/.github/workflows/github-release-draft.yml index 76d5cf71..a36c1e30 100644 --- a/.github/workflows/github-release-draft.yml +++ b/.github/workflows/github-release-draft.yml @@ -24,16 +24,16 @@ jobs: - name: Install Codex CLI run: | - sudo npm install -g @openai/codex@0.1.2505172129 + sudo npm install -g @openai/codex@0.110.0 - name: Collect changelog from PR env: - OPENAI_API_KEY: ${{ secrets.OPENAI_KEY }} + CODEX_API_KEY: ${{ secrets.OPENAI_KEY }} CODEX_QUIET_MODE: 1 GH_TOKEN: ${{ github.token }} run: | sed '/--/q' debian/changelog | sed '1, 2d' | head -n -2 > changelog.txt - codex -a auto-edit -q \ + codex exec --full-auto \ """ Remove the '*' and indent in changelog.txt. """ diff --git a/.github/workflows/github-release-issue-pr.yml b/.github/workflows/github-release-issue-pr.yml index 5573c98a..296d6d8e 100644 --- a/.github/workflows/github-release-issue-pr.yml +++ b/.github/workflows/github-release-issue-pr.yml @@ -39,7 +39,7 @@ jobs: - name: Install Codex CLI run: | - sudo npm install -g @openai/codex@0.1.2505172129 + sudo npm install -g @openai/codex@0.110.0 - name: Install dependencies run: | @@ -48,7 +48,7 @@ jobs: - name: Generate PR summary issue id: gen_issue env: - OPENAI_API_KEY: ${{ secrets.OPENAI_KEY }} + CODEX_API_KEY: ${{ secrets.OPENAI_KEY }} CODEX_QUIET_MODE: 1 GH_TOKEN: ${{ github.token }} run: | @@ -62,7 +62,7 @@ jobs: lastVersionNum="$(git tag --sort=-creatordate | head -n 1)" monthOfLastRelease=$(echo $lastVersionNum | awk -F. '{print $2}') - codex -a auto-edit -q \ + codex exec --full-auto \ """ Follow the following instructions: 1. Read the git commit messages from the month $monthOfLastRelease of this year. @@ -87,12 +87,12 @@ jobs: - name: Update changelog for Kali package env: - OPENAI_API_KEY: ${{ secrets.OPENAI_KEY }} + CODEX_API_KEY: ${{ secrets.OPENAI_KEY }} CODEX_QUIET_MODE: 1 run: | dateToday="$(TZ=Asia/Taipei date +'%a, %d %b %Y %H:%M:%S %z')" versionNum=${{ steps.gen_issue.outputs.version }} - codex -a auto-edit -q \ + codex exec --full-auto \ """ Follow the instructions below to update debian/changelog for $versionNum. In debian/changelog, you are going to append a new section, and describe what the new @@ -134,11 +134,11 @@ jobs: - name: Update version information env: - OPENAI_API_KEY: ${{ secrets.OPENAI_KEY }} + CODEX_API_KEY: ${{ secrets.OPENAI_KEY }} CODEX_QUIET_MODE: 1 run: | versionNum=${{ steps.gen_issue.outputs.version }} - codex -a auto-edit -q \ + codex exec --full-auto \ """ Update version information in the following files for next release $versionNum: 1. debian/control: Standards-Version diff --git a/debian/changelog b/debian/changelog index be573a63..88528582 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +quark-engine (26.3.1-0kali1) kali-dev; urgency=medium + + * Bug Fix + + - Fix rule path handling when specifying rules. (#238) + + * Document Enhancement + + - Add a FAQ page to the documentation. (#241) + + -- Zin Wong Thu, 05 Mar 2026 22:35:10 +0800 + quark-engine (26.2.1-0kali1) kali-dev; urgency=medium * Dependency Update diff --git a/debian/control b/debian/control index ed7f89b4..148f1da4 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Build-Depends: debhelper-compat (= 12), dh-virtualenv (>= 0.8), python3, -Standards-Version: 26.2.1 +Standards-Version: 26.3.1 Homepage: https://github.com/quark-engine/quark-engine Vcs-Browser: https://github.com/quark-engine/quark-engine Vcs-Git: https://github.com/quark-engine/quark-engine diff --git a/docs/source/conf.py b/docs/source/conf.py index 44483233..fdf69373 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'KunYu Chen, JunWei Song, YuShiang Dang, ShengFone Lu, AnWei Kung, ShunTe Lin, Vivek, Krishna' # The full version, including alpha/beta/rc tags -release = 'v26.2.1' +release = 'v26.3.1' # -- General configuration --------------------------------------------------- diff --git a/quark/__init__.py b/quark/__init__.py index f4c31355..50606c6f 100644 --- a/quark/__init__.py +++ b/quark/__init__.py @@ -1 +1 @@ -__version__ = "26.2.1" +__version__ = "26.3.1"