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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ Goldfish Scheme uses subcommands for different operations:
Without any command, it will print the help message:
```
> bin/gf
Goldfish Scheme 17.11.30 by LiiiLabs
Goldfish Scheme 17.11.31 by LiiiLabs

Commands:
help Display this help message
Expand All @@ -183,7 +183,7 @@ Commands:
`version` subcommand will print the Goldfish Scheme version and the underlying S7 Scheme version:
```
> bin/gf version
Goldfish Scheme 17.11.30 by LiiiLabs
Goldfish Scheme 17.11.31 by LiiiLabs
based on S7 Scheme 11.5 (22-Sep-2025)
```

Expand Down
2 changes: 2 additions & 0 deletions devel/200_1.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# 200_1

## 2026/03/21 Goldfish Scheme v17.11.31

## 2026/03/20 Goldfish Scheme v17.11.30
### 🔧 基础设施改进
- 引入goldfix v2026.3.20
Expand Down
2 changes: 1 addition & 1 deletion pkgs/goldfish.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

stdenv.mkDerivation {
pname = "goldfish";
version = "17.11.30";
version = "17.11.31";

src = ./..;

Expand Down
2 changes: 1 addition & 1 deletion src/goldfish.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
#include <isocline.h>
#endif

#define GOLDFISH_VERSION "17.11.30"
#define GOLDFISH_VERSION "17.11.31"

#define GOLDFISH_PATH_MAXN TB_PATH_MAXN

Expand Down
2 changes: 1 addition & 1 deletion xmake.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set_version ("17.11.30")
set_version ("17.11.31")

-- mode
set_allowedmodes("releasedbg", "release", "debug", "profile")
Expand Down
Loading