File tree 8 files changed +15
-14
lines changed
chpldoc/compflags/combinations
compflags/bradc/printstuff
8 files changed +15
-14
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ set(CHPL_BUILD_VERSION 0)
42
42
43
43
# Flip this to 'true' when we're ready to roll out a release; then back
44
44
# after branching
45
- set (CHPL_OFFICIAL_RELEASE false )
45
+ set (CHPL_OFFICIAL_RELEASE true )
46
46
47
47
### END config.h version value setting - configured_prefix set below ###
48
48
Original file line number Diff line number Diff line change @@ -87,8 +87,8 @@ def setup(app):
87
87
html_context = {"chplversion" :chplversion }
88
88
89
89
# The full version, including alpha/beta/rc tags.
90
- release = '2.1.0 (pre-release)'
91
- # release = '2.1.0'
90
+ # release = '2.1.0 (pre-release)'
91
+ release = '2.1.0'
92
92
93
93
# General information about the project.
94
94
project = u'Chapel Documentation'
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Documentation Archives
5
5
6
6
Online Documentation Archives
7
7
-----------------------------
8
+ * `Chapel 2.0 <https://chapel-lang.org/docs/2.0/index.html >`_
8
9
* `Chapel 1.33 <https://chapel-lang.org/docs/1.33/index.html >`_
9
10
* `Chapel 1.32 <https://chapel-lang.org/docs/1.32/index.html >`_
10
11
* `Chapel 1.31 <https://chapel-lang.org/docs/1.31/index.html >`_
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ to :ref:`using-a-more-full-featured-chapel` below.
21
21
packages you should have available to build and run Chapel.
22
22
23
23
24
- 1) If you don't already have the Chapel 2.0 source release, see
24
+ 1) If you don't already have the Chapel 2.1 source release, see
25
25
https://chapel-lang.org/download.html.
26
26
27
27
@@ -31,14 +31,14 @@ to :ref:`using-a-more-full-featured-chapel` below.
31
31
32
32
.. code-block :: bash
33
33
34
- tar xzf chapel-2.0 .0.tar.gz
34
+ tar xzf chapel-2.1 .0.tar.gz
35
35
36
36
b. Make sure that you are in the directory that was created when
37
37
unpacking the source release, for example:
38
38
39
39
.. code-block :: bash
40
40
41
- cd chapel-2.0 .0
41
+ cd chapel-2.1 .0
42
42
43
43
c. Set up your environment for Chapel's Quickstart mode.
44
44
If you are using a shell other than ``bash `` or ``zsh ``,
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ CHPL_HOME
37
37
38
38
.. code-block :: sh
39
39
40
- export CHPL_HOME=~ /chapel-2.0 .0
40
+ export CHPL_HOME=~ /chapel-2.1 .0
41
41
42
42
.. note ::
43
43
This, and all other examples in the Chapel documentation, assumes you're
Original file line number Diff line number Diff line change 1
1
2
- :Version: 2.1 pre-release
2
+ :Version: 2.1
3
3
:Manual section: 1
4
4
:Title: \\ fBchpl\\ fP
5
5
:Subtitle: Compiler for the Chapel Programming Language
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ compiler=$3
5
5
echo -n ` basename $compiler `
6
6
cat $CWD /../../../compflags/bradc/printstuff/version.goodstart
7
7
# During pre-release mode
8
- diff $CWD /../../../../compiler/main/BUILD_VERSION $CWD /zero.txt > /dev/null 2>&1 && echo " " || \
9
- { echo -n " pre-release (" && cat $CWD /../../../../compiler/main/BUILD_VERSION | tr -d \"\\ n && echo " )" ; }
8
+ # diff $CWD/../../../../compiler/main/BUILD_VERSION $CWD/zero.txt > /dev/null 2>&1 && echo "" || \
9
+ # { echo -n " pre-release (" && cat $CWD/../../../../compiler/main/BUILD_VERSION | tr -d \"\\n && echo ")" ; }
10
10
# During release mode:
11
- # echo ""
11
+ echo " "
12
12
13
13
# print Sphinx and chapeldomain versions
14
14
python=$( $CWD /../../../../util/config/find-python.sh)
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ compiler=$3
5
5
echo -n ` basename $compiler `
6
6
cat $CWD /version.goodstart
7
7
# During pre-release mode
8
- diff $CWD /../../../../compiler/main/BUILD_VERSION $CWD /zero.txt > /dev/null 2>&1 && echo " " || \
9
- { echo -n " pre-release (" && cat $CWD /../../../../compiler/main/BUILD_VERSION | tr -d \"\\ n && echo " )" ; }
8
+ # diff $CWD/../../../../compiler/main/BUILD_VERSION $CWD/zero.txt > /dev/null 2>&1 && echo "" || \
9
+ # { echo -n " pre-release (" && cat $CWD/../../../../compiler/main/BUILD_VERSION | tr -d \"\\n && echo ")" ; }
10
10
# During release mode:
11
- # echo ""
11
+ echo " "
12
12
13
13
if [ " $CHPL_LLVM " != " none" ]
14
14
then
You can’t perform that action at this time.
0 commit comments