Skip to content

Commit 650cfc0

Browse files
mehJosé Valim
authored and
José Valim
committed
Use semver for development version
Signed-off-by: José Valim <[email protected]>
1 parent d4d8240 commit 650cfc0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.9.3.dev
1+
# v0.9.3+dev
22

33
* enhancements
44
* [File] Add `File.chgrp`, `File.chmod` and `File.chown`

Diff for: RELEASE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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

77
2) Run `make clean test` to ensure all tests pass from scratch and the CI is green
88

@@ -18,7 +18,7 @@ This document simply outlines the release process:
1818

1919
8) Push package to expm with `expm publish package.exs`
2020

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

2323
## Places where version is mentioned
2424

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.3.dev
1+
0.9.3+dev

Diff for: src/elixir.app.src

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{application, elixir,
22
[{description, "elixir"},
3-
{vsn, "0.9.3.dev"},
3+
{vsn, "0.9.3+dev"},
44
{modules, [
55
elixir
66
]},
77
{registered,[elixir_code_server]},
88
{applications, [kernel,stdlib]},
99
{mod, {elixir,[]}}
10-
]}.
10+
]}.

0 commit comments

Comments
 (0)