Skip to content

Commit

Permalink
Prep for release v0.12: update dist, spec, and documentation
Browse files Browse the repository at this point in the history
Update the dist, specfile used for rpm, and documentation to
specify v0.12 for the release.

Signed-off-by: Olaf Faaland <[email protected]>
  • Loading branch information
ofaaland committed Oct 21, 2024
1 parent d56910b commit ba72f9d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions dist/builddist
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ print_usage() {
echo ""
echo "Tags:"
echo " main - build tarball of latest"
echo " v0.11.1 - build tarball of v0.11.1"
echo " v0.12 - build tarball of v0.12"
}

# check that we got an argument or print usage
Expand All @@ -23,13 +23,13 @@ if [ "$1" == "main" ] ; then
"libcircle" "hpc" "master"
"mpifileutils" "hpc" "master"
)
elif [ "$1" == "v0.11.1" ] ; then
elif [ "$1" == "v0.12" ] ; then
# to build from latest branch of all repos
ORGS=(
"lwgrp" "llnl" "v1.0.4"
"dtcmp" "llnl" "v1.1.4"
"libcircle" "hpc" "v0.3"
"mpifileutils" "hpc" "v0.11.1"
"mpifileutils" "hpc" "v0.12"
)
else
echo "Error: unknown tag: $1"
Expand Down
8 changes: 4 additions & 4 deletions doc/rst/build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ To be certain of compatibility, it is recommended that one install libarchive-3.
To build on PowerPC, one may need to add :code:`--build=powerpc64le-redhat-linux-gnu` to the configure command.

Assuming libarchive has been installed to an `install` directory as shown above,
one can then build mpiFileUtils from a release like v0.11.1 with commands like the following:
one can then build mpiFileUtils from a release like v0.12 with commands like the following:

.. code-block:: Bash
wget https://github.com/hpc/mpifileutils/releases/download/v0.11.1/mpifileutils-v0.11.1.tgz
tar -zxf mpifileutils-v0.11.1.tgz
cd mpifileutils-v0.11.1
wget https://github.com/hpc/mpifileutils/releases/download/v0.12/mpifileutils-v0.12.tgz
tar -zxf mpifileutils-v0.12.tgz
cd mpifileutils-v0.12
mkdir build
cd build
cmake .. \
Expand Down
4 changes: 2 additions & 2 deletions doc/rst/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.11.1'
version = u'0.12'
# The full version, including alpha/beta/rc tags.
release = u'0.11.1'
release = u'0.12'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion mpifileutils.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: mpifileutils
Version: 0.11.1
Version: 0.12
Release: 1%{?dist}
Summary: File utilities designed for scalability and performance.

Expand Down

0 comments on commit ba72f9d

Please sign in to comment.