Release v1.0.1 · elixir-lang/elixir@8946015

1 min read Original article ↗

3 files changed

lines changed

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

# Changelog

22
3-

## v1.0.1-dev

3+

## v1.0.1 (2014-10-07)

44
55

* Enhancements

66

* [Mix] Add MIX_ENV output to archive.build (as on escript.build)

@@ -11,7 +11,11 @@

1111

* [Mix] Load dependencies before `deps.check` compiles dependencies

1212

* [Mix] Ensure `Mix.Config` is deep merged

1313

* [Mix] Change version requirement in new apps to `~> MAJOR.MINOR`

14-

* [Mix] Report correct location if local.hex fails and give higher priority to powershell install on Windows

14+

* [Mix] Report correct location if `local.hex` fails and give higher priority to powershell install on Windows

15+

* [Mix] Ensure `--elixirc-paths` option for `compile.elixir` is a subset of the project `:elixirc_paths` configuration and it does not remove skipped entries from the manifest

16+

* [Mix] Ensure `compile.elixir` writes to manifest when files are removed

17+

* [Mix] Ensure `compile.elixir` purges and deletes modules before compiling

18+

* [Mix] Do not crash on malformed proxy env var

1519

* [Stream] Ensure `chunk/4` works correctly when halted

1620

* [System] Do not allow relative paths in `System.cmd/3` as documented

1721

* [System] Fix `:stderr_to_stdout` option in `System.cmd/3`

Original file line numberDiff line numberDiff line change

@@ -1 +1 @@

1-

1.0.1-dev

1+

1.0.1

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

{application, elixir,

22

[{description, "elixir"},

3-

{vsn, "1.0.1-dev"},

3+

{vsn, "1.0.1"},

44

{modules, [

55

elixir

66

]},