Skip to content

Commit 44b0412

Browse files
author
José Valim
committed
Release v0.14.2
1 parent d984a82 commit 44b0412

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

Diff for: CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## v0.14.2-dev
3+
## v0.14.2
44

55
* Enhancements
66
* [Enum] Improve performance of `Enum.join/2` and `Enum.map_join/3` by using iolists
@@ -13,7 +13,7 @@
1313
* [URI] Allow `parse/1` now accepts `%URI{}` as argument and return the uri itself
1414

1515
* Bug fixes
16-
* [CLI] Support paths inside archives in -pa and -pz options
16+
* [CLI] Support paths inside archives in `-pa` and `-pz` options
1717
* [IEx] Remove dely when printing data from the an application start callback
1818
* [IEx] Ensure we show a consistent error when we cannot evaluate `.iex.exs`
1919
* [Kernel] Ensure derived protocols are defined with a file

Diff for: RELEASE.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,27 @@
22

33
This document simply outlines the release process:
44

5-
1) Remove `-dev` extension from VERSION
5+
1. Remove `-dev` extension from VERSION
66

7-
2) Ensure CHANGELOG is updated and timestamp
7+
2. Ensure CHANGELOG is updated and timestamp
88

9-
3) Commit changes above with title "Release vVERSION" and generate new tag
9+
3. Commit changes above with title "Release vVERSION" and generate new tag
1010

11-
4) Run `make clean test` to ensure all tests pass from scratch and the CI is green
11+
4. Run `make clean test` to ensure all tests pass from scratch and the CI is green
1212

13-
5) Push master and tags
13+
5. Push master and tags
1414

15-
6) Release new docs with `make release_docs`, move docs to `docs/stable`
15+
6. Release new docs with `make release_docs`, move docs to `docs/stable`
1616

17-
7) Release new zip with `make release_zip`, push new zip to GitHub Releases
17+
7. Release new zip with `make release_zip`, push new zip to GitHub Releases
1818

19-
8) Merge master into stable branch and push it
19+
8. Merge master into stable branch and push it
2020

21-
9) After release, bump versions, add `-dev` back and commit
21+
9. After release, bump versions, add `-dev` back and commit
2222

23-
10) `make release_docs` once again and push it to `elixir-lang.github.com`
23+
10. `make release_docs` once again and push it to `elixir-lang.org`
24+
25+
11. Also update `release` file in `elixir-lang.org`
2426

2527
## Places where version is mentioned
2628

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.14.2-dev
1+
0.14.2

Diff for: src/elixir.app.src

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, elixir,
22
[{description, "elixir"},
3-
{vsn, "0.14.2-dev"},
3+
{vsn, "0.14.2"},
44
{modules, [
55
elixir
66
]},

0 commit comments

Comments
 (0)