Skip to content

Commit

Permalink
Merge e772bdd into a0c29e9
Browse files Browse the repository at this point in the history
  • Loading branch information
odino committed Feb 20, 2019
2 parents a0c29e9 + e772bdd commit 6987cd7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.2.x`. Bugs, instead,
create a new version branch, such as `1.3.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 @@ -24,7 +24,7 @@ MACHINE_TYPE=$(uname -m)
if [ "${MACHINE_TYPE}" = 'x86_64' ]; then
ARCH="amd64"
fi
VERSION=1.2.0
VERSION=1.3.0

echo "Trying to detect the details of your architecture."
echo ""
Expand Down
2 changes: 1 addition & 1 deletion docs/types/builtin-function.md
Expand Up @@ -234,7 +234,7 @@ $ cat ~/.absrc
source("~/abs/lib/library.abs")
$ abs
Hello user, welcome to the ABS (1.2.0) programming language!
Hello user, welcome to the ABS (1.3.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.2.0"
var VERSION = "1.3.0"

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

0 comments on commit 6987cd7

Please sign in to comment.