Skip to content

Commit 8931f34

Browse files
author
José Valim
committed
Release v1.0.0-rc2
1 parent 843706e commit 8931f34

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# Changelog
22

3-
## v1.0.0-rc2
3+
## v1.0.0-rc2 (2014-09-07)
44

55
* Enhancements
66
* [ExUnit] Print process mailbox on failing `assert_receive`
77
* [ExUnit] Tag all doctests with the `:doctest` tag
8-
* [Mix] `mix deps.unlock` warns when given missing dependency
98
* [Kernel] Friendlier `unquote_splicing` error on inline quote
9+
* [Kernel] Add `<~`, `~>`, `<<~`, `~>>`, `<~>`, `<|>` as operators
10+
* [Mix] `mix deps.unlock` warns when given a missing dependency
11+
* [Mix] Fetch hex using HTTPS
1012

1113
* Bug fixes
1214
* [File] Ensure `File.cwd` generates lowercase drive letters on Windows

lib/elixir/test/elixir/inspect_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ defmodule Inspect.AtomTest do
4646
assert inspect(:&&&) == ":&&&"
4747
assert inspect(:~~~) == ":~~~"
4848
assert inspect(:<<~) == ":<<~"
49-
assert inspect(:~>>) == ":<<~"
49+
assert inspect(:~>>) == ":~>>"
5050
assert inspect(:<~>) == ":<~>"
5151
assert inspect(:<|>) == ":<|>"
5252
end

0 commit comments

Comments
 (0)