Skip to content

Commit

Permalink
preview 1 is here
Browse files Browse the repository at this point in the history
  • Loading branch information
odino committed Dec 24, 2018
1 parent 926976b commit 7703590
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
4 changes: 2 additions & 2 deletions docs/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion docs/misc/technical-details.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion scripts/release.abs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 7703590

Please sign in to comment.