Skip to content

Commit

Permalink
Issue 602: release v0.5.1 (#603)
Browse files Browse the repository at this point in the history
* bump the version to v0.5.1

* update Jenkinsfile action on tag event
  • Loading branch information
jkotan authored May 23, 2022
1 parent 9a0fe52 commit 62d0ff0
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cmake_minimum_required(VERSION 3.10)
project(h5cpp
LANGUAGES CXX C
# VERSION 0.5.0
VERSION 0.5.1
# documentation for VERSION with one '.' is stored as v:latest (see doc/conf.py.in)
VERSION 0.6
# VERSION 0.5
)


Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ builders = pipeline_builder.createBuilders { container ->
)]) {
withEnv(["PROJECT=${pipeline_builder.project}", "RLVERSION=${rlversion}"]) {
sh 'cd $PROJECT && git checkout -b docs_$RLVERSION && ./push_to_repo.sh $USERNAME $PASSWORD'
sh 'cd $PROJECT && git checkout docs_stable && git merge master && ./push_to_repo.sh $USERNAME $PASSWORD'
sh 'cd $PROJECT && git checkout docs_stable && git reset --hard master && ./push_to_repo.sh $USERNAME $PASSWORD'
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,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.0 path/to/your/source
cmake -Dh5cpp_DIR=/home/user1/some/path/lib/cmake/h5cpp-0.5.1 path/to/your/source
```
where version number may vary.

Expand Down
4 changes: 2 additions & 2 deletions doc/design/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.5.0'
version = u'0.5.1'
# The full version, including alpha/beta/rc tags.
release = u'0.5.0'
release = u'0.5.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ html_sidebars = {
}

html_context = {
"docs_versions" : ["v0.5.0", "v0.4.1", "v0.3.3"]
"docs_versions" : ["v0.5.1", "v0.5.0", "v0.4.1", "v0.3.3"]
}

# Additional templates that should be rendered to pages, maps page names to
Expand Down
4 changes: 2 additions & 2 deletions doc/source/users_guide/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ to update your package list and

.. code-block:: bash
$ apt-get install libh5cpp0.5.0 libh5cpp0.5.0-dbg libh5cpp0.5.0-doc libh5cpp0.5.0-dev
$ apt-get install libh5cpp0.5.1 libh5cpp0.5.1-dbg libh5cpp0.5.1-doc libh5cpp0.5.1-dev
to install the library of v0.5.0. Dependencies will be resolved automatically so you can
to install the library of v0.5.1. Dependencies will be resolved automatically so you can
start with working right after the installation has finished.
6 changes: 3 additions & 3 deletions doc/source/users_guide/using.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.0`
The *CMake* package is installed below :file:`PREFIX/lib/cmake/h5cpp-0.5.1`
where :envvar:`PREFIX` expands to the installation prefix used in the
inital cmake call of the installation procedure.

Expand Down Expand Up @@ -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.0)
VERSION 0.5.1)
set(CMAKE_CXX_STANDARD 11)
find_package(h5cpp REQUIRED)
Expand All @@ -56,7 +56,7 @@ You can build the code with
h5cpp_test:$ mkdir build
h5cpp_test:$ cd build
h5cpp_test:$ cmake -Dh5cpp_DIR=<INSTALLPREFIX>/lib/cmake/h5cpp-0.5.0 ../
h5cpp_test:$ cmake -Dh5cpp_DIR=<INSTALLPREFIX>/lib/cmake/h5cpp-0.5.1 ../
h5cpp_test:$ make
The cmake variable :envvar:`h5cpp_DIR` tells :program:`cmake` where to look
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('h5cpp',['cpp','c'],version:'0.5.0', default_options:'cpp_std=c++17')
project('h5cpp',['cpp','c'],version:'0.5.1', default_options:'cpp_std=c++17')

h5cpp_dependencies = []
# -----------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/h5cpp/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ subdir('utilities')
h5cpp_lib = library('h5cpp',sources,
dependencies:h5cpp_dependencies,
include_directories:[srcinc],
version: '0.5.0',
version: '0.5.1',
soversion:'1',
install:true,
install_mode:'r--r--r--')
Expand Down

0 comments on commit 62d0ff0

Please sign in to comment.