blueloveTH 2 年之前
父節點
當前提交
c5ffaae2f4
共有 3 個文件被更改,包括 7 次插入3 次删除
  1. 5 1
      docs/bindings_lua.md
  2. 1 1
      docs/retype.yml
  3. 1 1
      include/pocketpy/common.h

+ 5 - 1
docs/bindings_lua.md

@@ -4,9 +4,13 @@ title: Reuse Lua Bindings
 order: 17
 order: 17
 ---
 ---
 
 
+!!!
+This feature is available in `v1.4.0` or higher.
+!!!
+
 pkpy provides a lua bridge to reuse lua bindings.
 pkpy provides a lua bridge to reuse lua bindings.
 It allows you to run lua code and call lua functions in python
 It allows you to run lua code and call lua functions in python
-by embed a lua virtual machine.
+by embedding a lua virtual machine.
 
 
 Add `lua_bridge.hpp` and `lua_bridge.cpp` in [3rd/lua_bridge](https://github.com/blueloveTH/pocketpy/tree/main/3rd/lua_bridge) to your project.
 Add `lua_bridge.hpp` and `lua_bridge.cpp` in [3rd/lua_bridge](https://github.com/blueloveTH/pocketpy/tree/main/3rd/lua_bridge) to your project.
 Make sure `lua.h`, `lualib.h` and `lauxlib.h` are in your include path
 Make sure `lua.h`, `lualib.h` and `lauxlib.h` are in your include path

+ 1 - 1
docs/retype.yml

@@ -3,7 +3,7 @@ output: .retype
 url: https://pocketpy.dev
 url: https://pocketpy.dev
 branding:
 branding:
   title: pocketpy
   title: pocketpy
-  label: v1.3.9
+  label: v1.4.0
   logo: "./static/logo.png"
   logo: "./static/logo.png"
 favicon: "./static/logo.png"
 favicon: "./static/logo.png"
 meta:
 meta:

+ 1 - 1
include/pocketpy/common.h

@@ -21,7 +21,7 @@
 #include <random>
 #include <random>
 #include <deque>
 #include <deque>
 
 
-#define PK_VERSION				"1.3.9"
+#define PK_VERSION				"1.4.0"
 
 
 #include "config.h"
 #include "config.h"
 #include "export.h"
 #include "export.h"