diff --git a/README.md b/README.md index e5513469..a3df477e 100644 --- a/README.md +++ b/README.md @@ -174,7 +174,7 @@ Goldfish Scheme uses subcommands for different operations: Without any command, it will print the help message: ``` > bin/gf -Goldfish Scheme 17.11.31 by LiiiLabs +Goldfish Scheme 17.11.32 by LiiiLabs Commands: help Display this help message @@ -188,7 +188,7 @@ Commands: `version` subcommand will print the Goldfish Scheme version and the underlying S7 Scheme version: ``` > bin/gf version -Goldfish Scheme 17.11.31 by LiiiLabs +Goldfish Scheme 17.11.32 by LiiiLabs based on S7 Scheme 11.5 (22-Sep-2025) ``` diff --git a/README_ZH.md b/README_ZH.md index c390d0b5..85bb6d77 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -175,7 +175,7 @@ sudo rm -rf /opt/goldfish 不带任何命令时,将打印帮助信息: ``` > bin/gf -Goldfish Scheme 17.11.31 by LiiiLabs +Goldfish Scheme 17.11.32 by LiiiLabs Commands: help Display this help message @@ -189,7 +189,7 @@ Commands: `version` 子命令将打印 金鱼Scheme 版本和底层 S7 Scheme 版本: ``` > bin/gf version -Goldfish Scheme 17.11.31 by LiiiLabs +Goldfish Scheme 17.11.32 by LiiiLabs based on S7 Scheme 11.5 (22-Sep-2025) ``` diff --git a/devel/200_1.md b/devel/200_1.md index cab99243..2a02e71d 100644 --- a/devel/200_1.md +++ b/devel/200_1.md @@ -1,5 +1,7 @@ # 200_1 +## 2026/03/22 Goldfish Scheme v17.11.32 + ## 2026/03/21 Goldfish Scheme v17.11.31 ## 2026/03/20 Goldfish Scheme v17.11.30 diff --git a/pkgs/goldfish.nix b/pkgs/goldfish.nix index 5c51bad2..852ce560 100644 --- a/pkgs/goldfish.nix +++ b/pkgs/goldfish.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { pname = "goldfish"; - version = "17.11.31"; + version = "17.11.32"; src = ./..; diff --git a/src/goldfish.hpp b/src/goldfish.hpp index cb06e33e..68843bc8 100644 --- a/src/goldfish.hpp +++ b/src/goldfish.hpp @@ -69,7 +69,7 @@ #include #endif -#define GOLDFISH_VERSION "17.11.31" +#define GOLDFISH_VERSION "17.11.32" #define GOLDFISH_PATH_MAXN TB_PATH_MAXN diff --git a/xmake.lua b/xmake.lua index 42eaeae2..c5d2c053 100644 --- a/xmake.lua +++ b/xmake.lua @@ -1,4 +1,4 @@ -set_version ("17.11.31") +set_version ("17.11.32") -- mode set_allowedmodes("releasedbg", "release", "debug", "profile")