Skip to content

Commit 243433d

Browse files
author
José Valim
committed
Release v0.7.2
1 parent 7a69a03 commit 243433d

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# v0.7.2 (2012-12-04)
2+
13
* enhancements
24
* [CLI] `--debug-info` is now true by default
35
* [ExUnit] Make ExUnit exit happen in two steps allowing developers to add custom `at_exit` hooks

Makefile

+1-1
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 -env ERL_LIBS $ERL_LIBS:lib
5-
VERSION := 0.7.2.dev
5+
VERSION := 0.7.2
66
RELEASE_FLAG := .release
77
INSTALL_PATH := /usr/local
88

RELEASE.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ This document simply outlines the release process:
2323
## Places where version is mentioned
2424

2525
* src/elixir.app.src
26+
* lib/elixir/src/elixir.app.src
2627
* lib/elixir/lib/system.ex
2728
* rel/reltool.config
2829
* Makefile

lib/elixir/lib/system.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ defmodule System do
2626
Returns Elixir's version as binary.
2727
"""
2828
@spec version() :: String.t
29-
def version, do: "0.7.2.dev"
29+
def version, do: "0.7.2"
3030

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

package.exs

+2-2
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.2.dev",
4+
version: "0.7.2",
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.2.dev"]]
8+
repositories: [[github: "elixir-lang/elixir", tag: "v0.7.2"]]
99
)

rel/reltool.config

+1-1
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.2.dev",
5+
{rel, "elixir", "0.7.2",
66
[
77
kernel,
88
stdlib,

src/elixir.app.src

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, elixir,
22
[{description, "elixir"},
3-
{vsn, "0.7.2.dev"},
3+
{vsn, "0.7.2"},
44
{modules, [
55
elixir
66
]},

0 commit comments

Comments
 (0)