Skip to content

Commit 8d94185

Browse files
committed
Change the version to the current state
1 parent e03d1f0 commit 8d94185

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# LuASM
22
A library to parse and execute custom ASM.
33

4-
> [!IMPORTANT]
5-
> This project is still under construction. But it is nearly in a state that is very usable. 😄
6-
74
It is a light‑weight Lua library that lets you define, parse and later execute a custom assembly‑like language. <br />
85
And the library is deliberately minimal:
96
- No external dependencies – pure Lua 5.1+.
@@ -78,5 +75,8 @@ To see other examples, they can be found in the [`examples/`](examples) director
7875

7976
These examples are numbered so that they ban be viewed in sequential order.
8077

78+
## Version
79+
This project is currently in Version `0.1.0`. This is the first version that can actively be used.
80+
8181
## License
8282
LuASM is released under the MIT License – you are free to use, modify, and distribute it in your projects. See the [LICENSE](LICENSE) file for the full text.

src/luasm.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ end
2626
local LuASM = {}
2727

2828
--- Current version of the library.
29-
LuASM.version = "0.0.1"
29+
LuASM.version = "0.1.0"
3030

3131
--- Creates a new LuASM runner with the specific instructions and settings
3232
--- @param instructions table List of instruction objects (created with `LuASM.instruction`).

0 commit comments

Comments
 (0)