From a25eba6aa87d0c3c5bce5deaf2ed471aba298133 Mon Sep 17 00:00:00 2001 From: odino Date: Thu, 2 Jan 2020 20:26:01 +0400 Subject: [PATCH] Tracking PR for 1.11.x --- docs/installer.sh | 2 +- docs/misc/3pl.md | 2 +- docs/types/builtin-function.md | 2 +- main.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/installer.sh b/docs/installer.sh index 2c3f6839..b411d2b0 100644 --- a/docs/installer.sh +++ b/docs/installer.sh @@ -27,7 +27,7 @@ if [ "${MACHINE_TYPE}" = 'x86_64' ]; then ARCH="amd64" fi -VERSION=1.10.0 +VERSION=1.11.0 echo "Trying to detect the details of your architecture." echo "" diff --git a/docs/misc/3pl.md b/docs/misc/3pl.md index 0059aecf..8ff45658 100644 --- a/docs/misc/3pl.md +++ b/docs/misc/3pl.md @@ -64,7 +64,7 @@ another file is specified: ``` $ ~/projects/abs/builds/abs -Hello alex, welcome to the ABS (1.10.0) programming language! +Hello alex, welcome to the ABS (1.11.0) programming language! Type 'quit' when you're done, 'help' if you get lost! ⧐ require("abs-sample-module") diff --git a/docs/types/builtin-function.md b/docs/types/builtin-function.md index 7e5b7937..93e756b3 100644 --- a/docs/types/builtin-function.md +++ b/docs/types/builtin-function.md @@ -304,7 +304,7 @@ $ cat ~/.absrc source("~/abs/lib/library.abs") $ abs -Hello user, welcome to the ABS (1.10.0) programming language! +Hello user, welcome to the ABS (1.11.0) programming language! Type 'quit' when you are done, 'help' if you get lost! ⧐ adder(1, 2) 3 diff --git a/main.go b/main.go index f6ebff8f..3faaca4a 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( "github.com/abs-lang/abs/repl" ) -var Version = "1.10.0" +var Version = "1.11.0" // The ABS interpreter func main() {