Skip to content

Commit 19eb86d

Browse files
committed
prepare release 0.1.3
Signed-off-by: Philip Kovacs <phil@mxbits.io>
1 parent 6245005 commit 19eb86d

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cmake_policy(VERSION 3.4.0)
2626
cmake_minimum_required(VERSION 3.4.0 FATAL_ERROR)
2727

2828
project(slurm-redis
29-
VERSION 0.1.2
29+
VERSION 0.1.3
3030
DESCRIPTION "Redis plugins for slurm"
3131
HOMEPAGE_URL "https://github.com/pkovacs/slurm-redis"
3232
LANGUAGES C)

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
This file provides a summary of changes in the releases of slurm-redis
22

3+
Changes in v0.1.3
4+
=================
5+
-- release for slurm-19.05.5
6+
37
Changes in v0.1.2
48
=================
59
-- release for slurm-19.05.3

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@ ___
4343

4444
The patch sets are named according to the version of slurm-redis and the version of slurm to which they apply, for example:
4545

46-
`slurm-redis-0.1.0-slurm-19.05.patch.bz2` would be the patch you could use for slurm-redis version 0.1.0 that patches over the slurm 19.05 source tree. Here's an example of using the patch set:
46+
`slurm-redis-0.1.3-slurm-19.05.patch.bz2` would be the patch you could use for slurm-redis version 0.1.3 that patches over the slurm 19.05 source tree. Here's an example of using the patch set:
4747

4848
```bash
4949
# Unpack both tarballs and apply the patch set
50-
$ tar -xjf slurm-19.05.2.tar.bz2
51-
$ bunzip2 slurm-redis-0.1.0-slurm-19.05.patch.bz2
52-
$ cd slurm-19.05.2
53-
$ patch -p1 < ../slurm-redis-0.1.0-slurm-19.05.patch
50+
$ tar -xjf slurm-19.05.5.tar.bz2
51+
$ bunzip2 slurm-redis-0.1.3-slurm-19.05.patch.bz2
52+
$ cd slurm-19.05.5
53+
$ patch -p1 < ../slurm-redis-0.1.3-slurm-19.05.patch
5454
# patching file configure.ac
5555
# ...
56-
# Re-run autoreconf (or autogen.sh on 18.08) to apply build system changes
56+
# Re-run autoreconf to apply build system changes
5757
./autoreconf
5858
# Configure slurm as you normally would, noting these additional options:
5959
./configure --help # See section "Advanced configuration"
@@ -87,11 +87,11 @@ ___
8787
# - hint: a configured source tree is one in which slurm/slurm.h exists.
8888
#
8989

90-
$ tar -xjf slurm-redis-0.1.0.tar.bz2
91-
$ cd slurm-redis-0.1.0
90+
$ tar -xjf slurm-redis-0.1.3.tar.bz2
91+
$ cd slurm-redis-0.1.3
9292
$ mkdir build
9393
$ cd build
94-
$ cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INCLUDE_PATH=/home/phil/slurm-19.05.2/ ..
94+
$ cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INCLUDE_PATH=/home/phil/slurm-19.05.5/ ..
9595
$ make
9696
$ sudo make install
9797
```

0 commit comments

Comments
 (0)