Skip to content

Commit

Permalink
Tracking PR for ABS 1.7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
odino committed Aug 5, 2019
1 parent ec94f32 commit 601d082
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -8,7 +8,7 @@ repository.

Since we follow [semver](https://semver.org/),
when a new feature is released we don't backport it but simply
create a new version branch, such as `1.6.x`. Bugs, instead,
create a new version branch, such as `1.7.x`. Bugs, instead,
might be backported from `1.1.0` to, for example, `1.0.x` and we
will have a new [release](https://github.com/abs-lang/abs/releases),
say `1.0.1` for the `1.0.x` version branch.
Expand Down
2 changes: 1 addition & 1 deletion docs/installer.sh
Expand Up @@ -27,7 +27,7 @@ if [ "${MACHINE_TYPE}" = 'x86_64' ]; then
ARCH="amd64"
fi

VERSION=1.6.0
VERSION=1.7.0

echo "Trying to detect the details of your architecture."
echo ""
Expand Down
2 changes: 1 addition & 1 deletion docs/misc/technical-details.md
Expand Up @@ -205,7 +205,7 @@ ERROR: type mismatch: NULL + NUMBER

## Roadmap

We're currently working on [1.7](https://github.com/abs-lang/abs/milestone/14).
We're currently working on [1.8](https://github.com/abs-lang/abs/milestone/15).

## Next

Expand Down
2 changes: 1 addition & 1 deletion docs/types/builtin-function.md
Expand Up @@ -243,7 +243,7 @@ $ cat ~/.absrc
source("~/abs/lib/library.abs")
$ abs
Hello user, welcome to the ABS (1.6.0) programming language!
Hello user, welcome to the ABS (1.7.0) programming language!
Type 'quit' when you are done, 'help' if you get lost!
⧐ adder(1, 2)
3
Expand Down
2 changes: 1 addition & 1 deletion main.go
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/abs-lang/abs/repl"
)

var Version = "1.6.0"
var Version = "1.7.0"

// The ABS interpreter
func main() {
Expand Down

0 comments on commit 601d082

Please sign in to comment.