Skip to content

Commit 48cee5a

Browse files
committed
Release v1.11.0-rc.0
1 parent 94160c0 commit 48cee5a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ The Calendar module ships with a new `Calendar.strftime/3` function, which provi
243243

244244
Mix also includes two new tasks: `mix app.config`, for application runtime configuration, and `mix test.coverage`, which generates aggregated coverage reports for umbrella projects and for test suites partitioned across processes.
245245

246-
## v1.11.0-dev
246+
## v1.11.0-rc.0 (2020-09-14)
247247

248248
### 1. Enhancements
249249

@@ -345,7 +345,9 @@ Mix also includes two new tasks: `mix app.config`, for application runtime confi
345345
* [Kernel] Improve compiler error message when using `|` in a `def` signature
346346
* [Kernel.SpecialForms] Add `|/2` to the list of special forms to avoid inconsistent behaviour on overrides
347347
* [Keyword] Enforce keys to be atoms in `Keyword.keys/1`
348-
* [URI] `URI.decode_query/2` emits an empty string for parameters without values, according to https://url.spec.whatwg.org/#application/x-www-form-urlencoded
348+
* [Record] Keep lexical ordering when creating records
349+
* [Registry] Do not crash when a process with key-value has been registered using `:via` and it fails to start on `init`
350+
* [URI] `URI.decode_query/2` emits an empty string for parameters without values, according to [URL's living standard](https://url.spec.whatwg.org/#application/x-www-form-urlencoded) - note this behaviour is not specified in the spec implemented by the URI module, so the living standard was chosen
349351
* [Version] Add defaults and enforce keys in `Version` struct
350352

351353
#### ExUnit

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ PREFIX ?= /usr/local
22
TEST_FILES ?= "*_test.exs"
33
SHARE_PREFIX ?= $(PREFIX)/share
44
MAN_PREFIX ?= $(SHARE_PREFIX)/man
5-
#CANONICAL := vMAJOR.MINOR/
6-
CANONICAL ?= master/
5+
CANONICAL := v1.11/
76
ELIXIRC := bin/elixirc --ignore-module-conflict $(ELIXIRC_OPTS)
87
ERLC := erlc -I lib/elixir/include
98
ERL_MAKE := if [ -n "$(ERLC_OPTS)" ]; then ERL_COMPILER_OPTIONS=$(ERLC_OPTS) erl -make; else erl -make; fi

SECURITY.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ Elixir applies bug fixes only to the latest minor branch. Security patches are a
66

77
| Elixir version | Support
88
| -------------- | ------------------------------
9-
| 1.11 | Development
10-
| 1.10 | Bug fixes and security patches
9+
| 1.11 | Bug fixes and security patches
10+
| 1.10 | Security patches only
1111
| 1.9 | Security patches only
1212
| 1.8 | Security patches only
1313
| 1.7 | Security patches only
14-
| 1.6 | Security patches only
1514

1615
## Announcements
1716

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.0-dev
1+
1.11.0-rc.0

lib/elixir/pages/compatibility-and-deprecations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,4 +174,4 @@ Version | Deprecated feature | Replaced by (ava
174174
[v1.8]: https://github.com/elixir-lang/elixir/blob/v1.8/CHANGELOG.md#4-hard-deprecations
175175
[v1.9]: https://github.com/elixir-lang/elixir/blob/v1.9/CHANGELOG.md#4-hard-deprecations
176176
[v1.10]: https://github.com/elixir-lang/elixir/blob/v1.10/CHANGELOG.md#4-hard-deprecations
177-
[v1.11]: https://github.com/elixir-lang/elixir/blob/master/CHANGELOG.md#4-hard-deprecations
177+
[v1.11]: https://github.com/elixir-lang/elixir/blob/v1.11/CHANGELOG.md#4-hard-deprecations

0 commit comments

Comments
 (0)