From d2ae2c605724ea104f9d245ea203fbd9015bce76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hozda?= Date: Fri, 13 Oct 2017 21:52:07 +0200 Subject: [PATCH] bump version in README, add TODO --- README.md | 4 ++-- TODO | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 TODO diff --git a/README.md b/README.md index 184a96d0..846f081c 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Rhai's current feature set: * No additional dependencies * No unsafe code -**Note:** Currently, it's version 0.4.0, so the language and APIs may change before they stabilize.* +**Note:** Currently, it's version 0.5.1, so the language and APIs may change before they stabilize.* ## Installation @@ -20,7 +20,7 @@ You can install Rhai using crates by adding this line to your dependences: ``` [dependencies] -rhai = "0.4.0" +rhai = "0.5.1" ``` ## Related diff --git a/TODO b/TODO new file mode 100644 index 00000000..513f5173 --- /dev/null +++ b/TODO @@ -0,0 +1,15 @@ +pre 1.0: + - loop + - binary ops + - unary minus and negation + - bool ops + - basic threads + - stdlib + - comments + - floats + - REPL (consume functions) +1.0: + - decide on postfix/prefix operators + - ranges, rustic for-loop + - advanced threads + actors + - more literals