File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1
1
REBAR := rebar
2
+ DOCS := v1.0
2
3
ELIXIRC := bin/elixirc --verbose --ignore-module-conflict
3
4
ERLC := erlc -I lib/elixir/include
4
5
ERL := erl -I lib/elixir/include -noshell -pa lib/elixir/ebin
@@ -146,8 +147,8 @@ release_zip: compile
146
147
147
148
release_docs : docs
148
149
cd ../docs
149
- rm -rf ../docs/stable
150
- mv docs ../docs/stable
150
+ rm -rf ../docs/$( DOCS )
151
+ mv docs ../docs/$( DOCS )
151
152
152
153
# This task requires aws-cli to be installed and set up for access to s3.hex.pm
153
154
# See: http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-set-up.html
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ This document simply outlines the release process:
18
18
19
19
7 . Push master and the new tag
20
20
21
- 8 . Release new docs with ` make release_docs ` , move docs to ` docs/stable ` and push them
21
+ 8 . Release new docs with ` make release_docs ` , move docs to ` docs/stable ` if appropriate, and push
22
22
23
23
9 . Release new zip with ` make release_zip ` , push ` Precompiled.zip ` to GitHub Releases
24
24
@@ -28,15 +28,13 @@ This document simply outlines the release process:
28
28
29
29
## New vMAJOR.MINOR releases
30
30
31
- 11 . Create a new branch "vMAJOR.MINOR" release
31
+ 11 . Create a new branch "vMAJOR.MINOR"
32
32
33
- 12 . Move stable docs to ` docs/vOLD-MAJOR.OLD-MINOR `
33
+ 12 . Move docs generation to ` docs/vOLD-MAJOR.OLD-MINOR ` and copy them to ` docs/stable `
34
34
35
- 13 . Move master docs to ` docs/stable `
35
+ 13 . Bump versions, start new CHANGELOG, add ` -dev ` back and commit "Start vVERSION+1"
36
36
37
- 14 . Bump versions, start new CHANGELOG, add ` -dev ` back and commit "Start vVERSION+1"
38
-
39
- 15 . ` make release_docs ` and push it to ` elixir-lang/docs `
37
+ 14 . ` make release_docs ` and push it to ` elixir-lang/docs `
40
38
41
39
## Places where version is mentioned
42
40
You can’t perform that action at this time.
0 commit comments