diff --git a/CHANGELOG.md b/CHANGELOG.md index 337411a853..e1c252b426 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ + +# 0.1.8 +- Single file programs without `fn main` now work as expected. +- REPL has been fixed: it now supports imports, consts, function definitions, etc. + # 0.1.7 - All C code in the compiler and vlib has been replaced with V. diff --git a/compiler/main.v b/compiler/main.v index c787725313..c4e3d2de86 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -8,7 +8,7 @@ import os import time const ( - Version = '0.1.7' + Version = '0.1.8' ) // TODO no caps