Skip to content

Commit 6ee8f5d

Browse files
authored
bump the version to 0.4.1 (#493)
1 parent 6dfc669 commit 6ee8f5d

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.0.0)
22
project(h5cpp
33
LANGUAGES CXX C
4-
VERSION 0.4.0
4+
VERSION 0.4.1
55
)
66

77
#=============================================================================

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ cmake -DCMAKE_INSTALL_PREFIX=/home/user1/some/path ..
144144
```
145145
and accordingly, when building the client program:
146146
```bash
147-
cmake -Dh5cpp_DIR=/home/user1/some/path/lib/cmake/h5cpp-0.4.0 path/to/your/source
147+
cmake -Dh5cpp_DIR=/home/user1/some/path/lib/cmake/h5cpp-0.4.1 path/to/your/source
148148
```
149149
where version number may vary.
150150

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.4.0'
64+
version = u'0.4.1'
6565
# The full version, including alpha/beta/rc tags.
66-
release = u'0.4.0'
66+
release = u'0.4.1'
6767

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

doc/source/users_guide/installing.rst

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

145145
.. code-block:: bash
146146
147-
$ apt-get install libh5cpp0.4.0 libh5cpp0.4.0-dbg libh5cpp0.4.0-doc libh5cpp0.4.0-dev
147+
$ apt-get install libh5cpp0.4.1 libh5cpp0.4.1-dbg libh5cpp0.4.1-doc libh5cpp0.4.1-dev
148148
149-
to install the library of v0.4.0. Dependencies will be resolved automatically so you can
149+
to install the library of v0.4.1. Dependencies will be resolved automatically so you can
150150
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.4.0`
10+
The *CMake* package is installed below :file:`PREFIX/lib/cmake/h5cpp-0.4.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.4.0)
44+
VERSION 0.4.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.4.0 ../
59+
h5cpp_test:$ cmake -Dh5cpp_DIR=<INSTALLPREFIX>/lib/cmake/h5cpp-0.4.1 ../
6060
h5cpp_test:$ make
6161
6262
The cmake variable :envvar:`h5cpp_DIR` tells :program:`cmake` where to look

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('h5cpp',['cpp','c'],version:'0.4.0', default_options:'cpp_std=c++17')
1+
project('h5cpp',['cpp','c'],version:'0.4.1', default_options:'cpp_std=c++17')
22

33
hdf5 = dependency('hdf5', language: 'c')
44
boost = dependency('boost', modules:['filesystem','system'])

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:[hdf5,boost],
2626
include_directories:[srcinc],
27-
version: '0.4.0',
27+
version: '0.4.1',
2828
soversion:'1',
2929
install:true,
3030
install_mode:'r--r--r--')

0 commit comments

Comments
 (0)