Skip to content

Commit 2ac8ab8

Browse files
committed
bump version to 0.3.0-dev2
1 parent 7c5b64b commit 2ac8ab8

4 files changed

Lines changed: 3 additions & 7 deletions

File tree

.github/instructions/pylua0.3.instructions.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,6 @@ py:execute("result = luau_value * 2")
145145
print(py:getGlobal("result")) -- 84
146146
```
147147

148-
**Current limitations** (v0.3.0-dev):
149-
- Passing Luau functions to Python is partially implemented
150-
- Two-way callable binding is planned but not fully functional
151-
152148
See `docs/INTEROP.md` for planned full two-way binding features.
153149

154150
## Common Gotchas

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Key modules (see `src/PyLua/`):
3333

3434
## Status
3535

36-
- Version: `0.3.0-dev`
36+
- Version: `0.3.0-dev2`
3737
- Target: Python 3.12 syntax and below (3.13+ out of scope)
3838
- Roadmap: `internalDocs/REWRITE_PLAN.md`
3939

docs/LIMITATIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Current Limitations (0.3.0-dev)
1+
# Current Limitations (0.3.0-dev2)
22

33
A practical subset is implemented; some features are deferred or partial:
44

src/PyLua/init.luau

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
local PyLua = {}
22

33
-- Version information
4-
PyLua.version = "0.3.0-dev"
4+
PyLua.version = "0.3.0-dev2"
55
PyLua.description = "PyLua - Embedded Python interpreter for Luau"
66

77
-- Import core components

0 commit comments

Comments
 (0)