From 50012ae57b2f60e35beb78b0457a7b34e77bf984 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 28 Jun 2019 13:49:34 +0200 Subject: [PATCH] V 0.1.8 --- CHANGELOG.md | 5 +++++ compiler/main.v | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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