Skip to content

Commit c524bcd

Browse files
author
José Valim
committed
Bump to 0.8.0.dev
1 parent abb1ae9 commit c524bcd

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ REBAR := $(shell echo `pwd`/rebar)
22
ELIXIRC := bin/elixirc --ignore-module-conflict $(ELIXIRC_OPTS)
33
ERLC := erlc -I lib/elixir/include
44
ERL := erl -I lib/elixir/include -noshell -pa lib/elixir/ebin
5-
VERSION := 0.7.3.dev
5+
VERSION := 0.8.0.dev
66
RELEASE_FLAG := .release
77
INSTALL_PATH := /usr/local
88

lib/elixir/lib/system.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ defmodule System do
3535
Returns Elixir's version as binary.
3636
"""
3737
@spec version() :: String.t
38-
def version, do: "0.7.3.dev"
38+
def version, do: "0.8.0.dev"
3939

4040
@doc """
4141
Returns a keywords list with version, git tag info and date.

package.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Expm.Package.new(
22
name: "elixir",
33
description: "Elixir is a functional meta-programming aware language built on top of the Erlang VM",
4-
version: "0.7.3.dev",
4+
version: "0.8.0.dev",
55
keywords: [],
66
homepage: "http://elixir-lang.org/",
77
maintainers: [[name: "José Valim", email: "[email protected]"]],
8-
repositories: [[github: "elixir-lang/elixir", tag: "v0.7.3.dev"]]
8+
repositories: [[github: "elixir-lang/elixir", tag: "v0.8.0.dev"]]
99
)

rel/reltool.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{lib_dirs, []},
33
{erts, [{mod_cond, derived}, {app_file, strip}]},
44
{app_file, strip},
5-
{rel, "elixir", "0.7.3.dev",
5+
{rel, "elixir", "0.8.0.dev",
66
[
77
kernel,
88
stdlib,

src/elixir.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, elixir,
22
[{description, "elixir"},
3-
{vsn, "0.7.3.dev"},
3+
{vsn, "0.8.0.dev"},
44
{modules, [
55
elixir
66
]},

0 commit comments

Comments
 (0)