From 54e4fba64ed54b36debd30b0bbb5b701140a7684 Mon Sep 17 00:00:00 2001 From: Jan Kotanski Date: Tue, 3 Jan 2023 12:15:23 +0100 Subject: [PATCH] bump the version to 0.5.2 --- CMakeLists.txt | 4 ++-- README.md | 2 +- doc/design/source/conf.py | 4 ++-- doc/source/conf.py.in | 2 +- doc/source/users_guide/installing.rst | 4 ++-- doc/source/users_guide/using.rst | 6 +++--- meson.build | 2 +- src/h5cpp/meson.build | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c50784b3b2..2f77d9c5c9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,9 +1,9 @@ cmake_minimum_required(VERSION 3.10) project(h5cpp LANGUAGES CXX C - # VERSION 0.5.1 + VERSION 0.5.2 # documentation for VERSION with one '.' is stored as v:latest (see doc/conf.py.in) - VERSION 0.5 + # VERSION 0.5 ) diff --git a/README.md b/README.md index 107fe25088..7ae6848e79 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ cmake -DCMAKE_INSTALL_PREFIX=/home/user1/some/path .. ``` and accordingly, when building the client program: ```bash -cmake -Dh5cpp_DIR=/home/user1/some/path/lib/cmake/h5cpp-0.5.1 path/to/your/source +cmake -Dh5cpp_DIR=/home/user1/some/path/lib/cmake/h5cpp-0.5.2 path/to/your/source ``` where version number may vary. diff --git a/doc/design/source/conf.py b/doc/design/source/conf.py index 0450edd710..e401b9e851 100644 --- a/doc/design/source/conf.py +++ b/doc/design/source/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = u'0.5.1' +version = u'0.5.2' # The full version, including alpha/beta/rc tags. -release = u'0.5.1' +release = u'0.5.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/source/conf.py.in b/doc/source/conf.py.in index b0cd457f6d..2f757fccb2 100644 --- a/doc/source/conf.py.in +++ b/doc/source/conf.py.in @@ -195,7 +195,7 @@ html_sidebars = { } html_context = { - "docs_versions" : ["v0.5.1", "v0.5.0", "v0.4.1", "v0.3.3"] + "docs_versions" : ["v0.5.2", "v0.5.1", "v0.5.0", "v0.4.1", "v0.3.3"] } # Additional templates that should be rendered to pages, maps page names to diff --git a/doc/source/users_guide/installing.rst b/doc/source/users_guide/installing.rst index 422a21b061..ffd16fb511 100644 --- a/doc/source/users_guide/installing.rst +++ b/doc/source/users_guide/installing.rst @@ -146,7 +146,7 @@ to update your package list and .. code-block:: bash - $ apt-get install libh5cpp0.5.1 libh5cpp0.5.1-dbg libh5cpp0.5.1-doc libh5cpp0.5.1-dev + $ apt-get install libh5cpp0.5.2 libh5cpp0.5.2-dbg libh5cpp0.5.2-doc libh5cpp0.5.2-dev -to install the library of v0.5.1. Dependencies will be resolved automatically so you can +to install the library of v0.5.2. Dependencies will be resolved automatically so you can start with working right after the installation has finished. diff --git a/doc/source/users_guide/using.rst b/doc/source/users_guide/using.rst index f73dffc57c..9acb20d409 100644 --- a/doc/source/users_guide/using.rst +++ b/doc/source/users_guide/using.rst @@ -7,7 +7,7 @@ Using *h5cpp* with :program:`cmake` *h5cpp* not only uses *CMake* as a build system but also provides a *CMake* package which makes using the library with *CMake* quite simple. -The *CMake* package is installed below :file:`PREFIX/lib/cmake/h5cpp-0.5.1` +The *CMake* package is installed below :file:`PREFIX/lib/cmake/h5cpp-0.5.2` where :envvar:`PREFIX` expands to the installation prefix used in the inital cmake call of the installation procedure. @@ -41,7 +41,7 @@ the following :file:`CMakeLists.txt` fiel is sufficient cmake_minimum_required(VERSION 3.5.0) project(h5cpp_test LANGUAGES C CXX - VERSION 0.5.1) + VERSION 0.5.2) set(CMAKE_CXX_STANDARD 11) find_package(h5cpp REQUIRED) @@ -56,7 +56,7 @@ You can build the code with h5cpp_test:$ mkdir build h5cpp_test:$ cd build - h5cpp_test:$ cmake -Dh5cpp_DIR=/lib/cmake/h5cpp-0.5.1 ../ + h5cpp_test:$ cmake -Dh5cpp_DIR=/lib/cmake/h5cpp-0.5.2 ../ h5cpp_test:$ make The cmake variable :envvar:`h5cpp_DIR` tells :program:`cmake` where to look diff --git a/meson.build b/meson.build index 7aabd6449c..59ca9124bc 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('h5cpp',['cpp','c'],version:'0.5.1', default_options:'cpp_std=c++17') +project('h5cpp',['cpp','c'],version:'0.5.2', default_options:'cpp_std=c++17') h5cpp_dependencies = [] # ----------------------------------------------------------------------------- diff --git a/src/h5cpp/meson.build b/src/h5cpp/meson.build index ca15c2cf52..1a5eb40ca3 100644 --- a/src/h5cpp/meson.build +++ b/src/h5cpp/meson.build @@ -24,7 +24,7 @@ subdir('utilities') h5cpp_lib = library('h5cpp',sources, dependencies:h5cpp_dependencies, include_directories:[srcinc], - version: '0.5.1', + version: '0.5.2', soversion:'1', install:true, install_mode:'r--r--r--')