From 7703590ba1c83c868a428da12a716b581fe73723 Mon Sep 17 00:00:00 2001 From: odino Date: Tue, 25 Dec 2018 03:59:27 +0400 Subject: [PATCH] preview 1 is here --- README.md | 2 +- docs/installer.sh | 4 ++-- docs/misc/technical-details.md | 2 +- scripts/release.abs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8ce05cc8..df64d4fb 100644 --- a/README.md +++ b/README.md @@ -84,4 +84,4 @@ ABS is fresh and under active development, meaning exciting things happen on a weekly basis. Have a look at the roadmaps [here](https://github.com/abs-lang/abs/milestones): -we're currently targeting the first iteration of ABS, [preview-1](https://github.com/abs-lang/abs/milestone/1). +we're currently working on the 2nd iteration of ABS, [preview-2](https://github.com/abs-lang/abs/milestone/3). diff --git a/docs/installer.sh b/docs/installer.sh index de20d848..62b10170 100644 --- a/docs/installer.sh +++ b/docs/installer.sh @@ -39,9 +39,9 @@ do done < "/dev/stdin" INSTALLER_PATH=$(dirname $(mktemp -u)) -BIN=abs-preview-0-$OS-amd64 +BIN=abs-preview-1-$OS-amd64 cd $INSTALLER_PATH && \ -wget https://github.com/abs-lang/abs/releases/download/preview-0/$BIN && \ +wget https://github.com/abs-lang/abs/releases/download/preview-1/$BIN && \ chmod +x $BIN && \ mv $BIN /usr/local/bin/abs && \ echo "installation completed" diff --git a/docs/misc/technical-details.md b/docs/misc/technical-details.md index 56971ee0..16b6d981 100644 --- a/docs/misc/technical-details.md +++ b/docs/misc/technical-details.md @@ -42,7 +42,7 @@ development, and `make test` will run all tests. ## Roadmap -We're currently working on the [preview-1 milestone](https://github.com/abs-lang/abs/milestone/1). +We're currently working on the [preview-2 milestone](https://github.com/abs-lang/abs/milestone/3). ## Next diff --git a/scripts/release.abs b/scripts/release.abs index 2abd1048..03531581 100644 --- a/scripts/release.abs +++ b/scripts/release.abs @@ -46,7 +46,7 @@ if !rm.ok { for platform in platforms { [goos, goarch] = platform.split("/") - output_name = "abs-preview-0-" + goos + "-" + goarch + output_name = "abs-preview-1-" + goos + "-" + goarch if (goos == "windows") { output_name = output_name + ".exe"