Skip to content

Commit 867957d

Browse files
authored
Issue 679: bump the version to 0.7.1 (#680)
* bump the version to 0.7.1 * remove ./src in docs if exists
1 parent d4f7ea0 commit 867957d

File tree

8 files changed

+14
-12
lines changed

8 files changed

+14
-12
lines changed

.github/workflows/cmake-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ jobs:
315315
docker exec build /bin/bash -c "find ./ -name \"Makefile\" -exec rm -rf {} \\;"
316316
docker exec build /bin/bash -c "find ./ -name \"*.cmake\" -exec rm -rf {} \\;"
317317
docker exec build /bin/bash -c "rm -rf ./latest/_sources"
318+
docker exec build /bin/bash -c "rm -rf ./src"
318319
319320
- name: Extract the code version from the branch name
320321
if: startsWith(github.ref, 'refs/heads/docs_') && matrix.shared == 'shared' && matrix.boost == 'stdfs' && matrix.mpi == 'serial' && matrix.os == 'debian12'
@@ -340,6 +341,7 @@ jobs:
340341
docker exec build /bin/bash -c "find ./ -name \"Makefile\" -exec rm -rf {} \\;"
341342
docker exec build /bin/bash -c "find ./ -name \"*.cmake\" -exec rm -rf {} \\;"
342343
docker exec build /bin/bash -c "rm -rf ./${{ steps.extract_docver.outputs.docver }}/_sources"
344+
docker exec build /bin/bash -c "rm -rf ./src"
343345
344346
- name: Deploy documentation
345347
if: (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/docs_')) && matrix.shared == 'shared' && matrix.boost == 'stdfs' && matrix.mpi == 'serial' && matrix.os == 'debian12'

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
cmake_minimum_required(VERSION 3.10)
22
project(h5cpp
33
LANGUAGES CXX C
4-
# VERSION 0.7.0
4+
VERSION 0.7.1
55
# documentation for VERSION with one '.' is stored as v:latest (see doc/conf.py.in)
6-
VERSION 0.7
6+
# VERSION 0.7
77
)
88

99

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ cmake -DCMAKE_INSTALL_PREFIX=/home/user1/some/path ..
119119
```
120120
and accordingly, when building the client program:
121121
```bash
122-
cmake -Dh5cpp_DIR=/home/user1/some/path/lib/cmake/h5cpp-0.7.0 path/to/your/source
122+
cmake -Dh5cpp_DIR=/home/user1/some/path/lib/cmake/h5cpp-0.7.1 path/to/your/source
123123
```
124124
where version number may vary.
125125

doc/design/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
# built documents.
6262
#
6363
# The short X.Y version.
64-
version = u'0.7.0'
64+
version = u'0.7.1'
6565
# The full version, including alpha/beta/rc tags.
66-
release = u'0.7.0'
66+
release = u'0.7.1'
6767

6868
# The language for content autogenerated by Sphinx. Refer to documentation
6969
# for a list of supported languages.

doc/source/conf.py.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ html_sidebars = {
196196

197197
html_context = {
198198
"docs_versions" : [
199-
"v0.7.0",
199+
"v0.7.1", "v0.7.0",
200200
"v0.6.1", "v0.6.0", "v0.5.2", "v0.5.1", "v0.5.0", "v0.4.1", "v0.3.3"]
201201
}
202202

doc/source/users_guide/installing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ to update your package list and
147147

148148
.. code-block:: bash
149149
150-
$ apt-get install libh5cpp0.7.0 libh5cpp0.7.0-dbg libh5cpp0.7.0-doc libh5cpp0.7.0-dev
150+
$ apt-get install libh5cpp0.7.1 libh5cpp0.7.1-dbg libh5cpp0.7.1-doc libh5cpp0.7.1-dev
151151
152-
to install the library of v0.7.0. Dependencies will be resolved automatically so you can
152+
to install the library of v0.7.1. Dependencies will be resolved automatically so you can
153153
start with working right after the installation has finished.

doc/source/users_guide/using.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Using *h5cpp* with :program:`cmake`
77

88
*h5cpp* not only uses *CMake* as a build system but also provides
99
a *CMake* package which makes using the library with *CMake* quite simple.
10-
The *CMake* package is installed below :file:`PREFIX/lib/cmake/h5cpp-0.7.0`
10+
The *CMake* package is installed below :file:`PREFIX/lib/cmake/h5cpp-0.7.1`
1111
where :envvar:`PREFIX` expands to the installation prefix used in the
1212
inital cmake call of the installation procedure.
1313

@@ -41,7 +41,7 @@ the following :file:`CMakeLists.txt` fiel is sufficient
4141
cmake_minimum_required(VERSION 3.5.0)
4242
project(h5cpp_test
4343
LANGUAGES C CXX
44-
VERSION 0.7.0)
44+
VERSION 0.7.1)
4545
set(CMAKE_CXX_STANDARD 11)
4646
4747
find_package(h5cpp REQUIRED)
@@ -56,7 +56,7 @@ You can build the code with
5656
5757
h5cpp_test:$ mkdir build
5858
h5cpp_test:$ cd build
59-
h5cpp_test:$ cmake -Dh5cpp_DIR=<INSTALLPREFIX>/lib/cmake/h5cpp-0.7.0 ../
59+
h5cpp_test:$ cmake -Dh5cpp_DIR=<INSTALLPREFIX>/lib/cmake/h5cpp-0.7.1 ../
6060
h5cpp_test:$ make
6161
6262
The cmake variable :envvar:`h5cpp_DIR` tells :program:`cmake` where to look

src/h5cpp/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ subdir('utilities')
2424
h5cpp_lib = library('h5cpp',sources,
2525
dependencies:h5cpp_dependencies,
2626
include_directories:[srcinc],
27-
version: '0.7.0',
27+
version: '0.7.1',
2828
soversion:'1',
2929
install:true,
3030
install_mode:'r--r--r--')

0 commit comments

Comments
 (0)