Skip to content

Commit 5b4497f

Browse files
author
José Valim
committed
Release v1.0.0-rc1
1 parent 612e124 commit 5b4497f

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## v0.15.2-dev
3+
## v1.0.0-rc1 (2014-08-30)
44

55
* Enhancements
66
* [ExUnit] Add timeouts to tests (which is configurable via tags)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.15.2-dev
1+
1.0.0-rc1

lib/logger/test/logger_test.exs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,12 @@ defmodule LoggerTest do
176176
end
177177

178178
test "log/2 relies on sync_threshold" do
179+
Logger.remove_backend(:console)
179180
Logger.configure(sync_threshold: 0)
180181
for _ <- 1..1000, do: Logger.log(:info, "some message")
181182
after
182183
Logger.configure(sync_threshold: 20)
184+
Logger.add_backend(:console)
183185
end
184186

185187
test "stop the application silently" do

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.15.2-dev"},
3+
{vsn, "1.0.0-rc1"},
44
{modules, [
55
elixir
66
]},

0 commit comments

Comments
 (0)