Skip to content

Commit 2c2fb82

Browse files
author
José Valim
committed
Update CHANGELOG
1 parent 1ad1d6d commit 2c2fb82

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

CHANGELOG.md

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

3-
## v1.0.4
3+
## v1.0.5
4+
5+
* Enhancements
6+
* [Record] Expand attributes and macros in record extractor
7+
* [String] `Optimize String.rstrip/1`
8+
* [String] `Optimize String.downcase/1`
9+
* [String] `Optimize String.upcase/1`
10+
11+
* Bug fixes
12+
* [EEx] Ensure blocks do not clobber EEx buffers
13+
* [Enum] Ensure `Enum.take/2` does not consume one extra item when halting on the last emittable item
14+
* [ExUnit] Fix `StringIO` processes leakage in the `ExUnit.CaptureIO` when there are errors inside the `capture_io` block
15+
* [GenEvent] Fix `GenEvent` detection of modules that aren't loaded
16+
* [IO] Read 4K blocks instead of lines in `IO.binread/2`. This fixes a bug where CRLF were being ignored and is also going to improve performance
17+
* [Logger] Handle `:undefined` arity in Logger.Translator (we get :undefined when a temporary worker of a `simple_one_for_one` supervisor crashes)
18+
* [Mix] Ensure config is escaped before being injected into escripts. This fixes a bug where escripts failed to be built when containing values like maps in config files
19+
* [Mix] Ensure we properly underscore acronyms followed by paths, for example, `HTTP.Foo`
20+
* [Stream] Ensure `Stream.flat_map/2` does not consume more items than necessary when piped to another `Stream.flat_map/2` that halts in the inner stream
21+
* [Version] Fix `to_string` for versions with numeric pre releases
22+
23+
## v1.0.4 (2015-04-07)
424

525
* Enhancements
626
* [Elixir] Support Erlang 17.5 and 18.0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.4
1+
1.0.5

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, "1.0.4"},
3+
{vsn, "1.0.5"},
44
{modules, [elixir]},
55
{registered, [elixir_config, elixir_code_server]},
66
{applications, [kernel,stdlib,crypto,compiler,syntax_tools]},

0 commit comments

Comments
 (0)