Skip to content

Commit 7aa0b80

Browse files
authored
bump the version to 0.5.2 (#617)
1 parent 25aed59 commit 7aa0b80

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

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.5.1
4+
VERSION 0.5.2
55
# documentation for VERSION with one '.' is stored as v:latest (see doc/conf.py.in)
6-
VERSION 0.5
6+
# VERSION 0.5
77
)
88

99

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ cmake -DCMAKE_INSTALL_PREFIX=/home/user1/some/path ..
124124
```
125125
and accordingly, when building the client program:
126126
```bash
127-
cmake -Dh5cpp_DIR=/home/user1/some/path/lib/cmake/h5cpp-0.5.1 path/to/your/source
127+
cmake -Dh5cpp_DIR=/home/user1/some/path/lib/cmake/h5cpp-0.5.2 path/to/your/source
128128
```
129129
where version number may vary.
130130

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.5.1'
64+
version = u'0.5.2'
6565
# The full version, including alpha/beta/rc tags.
66-
release = u'0.5.1'
66+
release = u'0.5.2'
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
@@ -195,7 +195,7 @@ html_sidebars = {
195195
}
196196

197197
html_context = {
198-
"docs_versions" : ["v0.5.1", "v0.5.0", "v0.4.1", "v0.3.3"]
198+
"docs_versions" : ["v0.5.2", "v0.5.1", "v0.5.0", "v0.4.1", "v0.3.3"]
199199
}
200200

201201
# Additional templates that should be rendered to pages, maps page names to

doc/source/users_guide/installing.rst

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

147147
.. code-block:: bash
148148
149-
$ apt-get install libh5cpp0.5.1 libh5cpp0.5.1-dbg libh5cpp0.5.1-doc libh5cpp0.5.1-dev
149+
$ apt-get install libh5cpp0.5.2 libh5cpp0.5.2-dbg libh5cpp0.5.2-doc libh5cpp0.5.2-dev
150150
151-
to install the library of v0.5.1. Dependencies will be resolved automatically so you can
151+
to install the library of v0.5.2. Dependencies will be resolved automatically so you can
152152
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.5.1`
10+
The *CMake* package is installed below :file:`PREFIX/lib/cmake/h5cpp-0.5.2`
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.5.1)
44+
VERSION 0.5.2)
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.5.1 ../
59+
h5cpp_test:$ cmake -Dh5cpp_DIR=<INSTALLPREFIX>/lib/cmake/h5cpp-0.5.2 ../
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.5.1', default_options:'cpp_std=c++17')
1+
project('h5cpp',['cpp','c'],version:'0.5.2', default_options:'cpp_std=c++17')
22

33
h5cpp_dependencies = []
44
# -----------------------------------------------------------------------------

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.5.1',
27+
version: '0.5.2',
2828
soversion:'1',
2929
install:true,
3030
install_mode:'r--r--r--')

0 commit comments

Comments
 (0)