Skip to content

Commit

Permalink
Release v0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
José Valim committed Dec 4, 2012
1 parent 7a69a03 commit 243433d
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# v0.7.2 (2012-12-04)

* enhancements
* [CLI] `--debug-info` is now true by default
* [ExUnit] Make ExUnit exit happen in two steps allowing developers to add custom `at_exit` hooks
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ REBAR := $(shell echo `pwd`/rebar)
ELIXIRC := bin/elixirc --ignore-module-conflict $(ELIXIRC_OPTS)
ERLC := erlc -I lib/elixir/include
ERL := erl -I lib/elixir/include -noshell -env ERL_LIBS $ERL_LIBS:lib
VERSION := 0.7.2.dev
VERSION := 0.7.2
RELEASE_FLAG := .release
INSTALL_PATH := /usr/local

Expand Down
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ This document simply outlines the release process:
## Places where version is mentioned

* src/elixir.app.src
* lib/elixir/src/elixir.app.src
* lib/elixir/lib/system.ex
* rel/reltool.config
* Makefile
Expand Down
2 changes: 1 addition & 1 deletion lib/elixir/lib/system.ex
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ defmodule System do
Returns Elixir's version as binary.
"""
@spec version() :: String.t
def version, do: "0.7.2.dev"
def version, do: "0.7.2"

@doc """
Returns a keywords list with version, git tag info and date.
Expand Down
4 changes: 2 additions & 2 deletions package.exs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Expm.Package.new(
name: "elixir",
description: "Elixir is a functional meta-programming aware language built on top of the Erlang VM",
version: "0.7.2.dev",
version: "0.7.2",
keywords: [],
homepage: "http://elixir-lang.org/",
maintainers: [[name: "José Valim", email: "jose.valim@plataformatec.com.br"]],
repositories: [[github: "elixir-lang/elixir", tag: "v0.7.2.dev"]]
repositories: [[github: "elixir-lang/elixir", tag: "v0.7.2"]]
)
2 changes: 1 addition & 1 deletion rel/reltool.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{lib_dirs, []},
{erts, [{mod_cond, derived}, {app_file, strip}]},
{app_file, strip},
{rel, "elixir", "0.7.2.dev",
{rel, "elixir", "0.7.2",
[
kernel,
stdlib,
Expand Down
2 changes: 1 addition & 1 deletion src/elixir.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, elixir,
[{description, "elixir"},
{vsn, "0.7.2.dev"},
{vsn, "0.7.2"},
{modules, [
elixir
]},
Expand Down

0 comments on commit 243433d

Please sign in to comment.