Skip to content

Commit

Permalink
Release v1.0.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
José Valim committed Aug 30, 2014
1 parent 612e124 commit 5b4497f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

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

* Enhancements
* [ExUnit] Add timeouts to tests (which is configurable via tags)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.15.2-dev
1.0.0-rc1
2 changes: 2 additions & 0 deletions lib/logger/test/logger_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,12 @@ defmodule LoggerTest do
end

test "log/2 relies on sync_threshold" do
Logger.remove_backend(:console)
Logger.configure(sync_threshold: 0)
for _ <- 1..1000, do: Logger.log(:info, "some message")
after
Logger.configure(sync_threshold: 20)
Logger.add_backend(:console)
end

test "stop the application silently" do
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.15.2-dev"},
{vsn, "1.0.0-rc1"},
{modules, [
elixir
]},
Expand Down

0 comments on commit 5b4497f

Please sign in to comment.