Skip to content

Commit

Permalink
Merge 8fde795 into 0f7656d
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherHogan committed Apr 6, 2022
2 parents 0f7656d + 8fde795 commit 23839d9
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ project(HERMES)
# Version information
#------------------------------------------------------------------------------
set(HERMES_VERSION_MAJOR "0")
set(HERMES_VERSION_MINOR "4")
set(HERMES_VERSION_MINOR "5")
set(HERMES_VERSION_PATCH "0")
set(HERMES_PACKAGE "hermes")
set(HERMES_PACKAGE_NAME "HERMES")
Expand Down
2 changes: 1 addition & 1 deletion adapter/mpiio/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project(MPIIOAdapter VERSION 0.4.0)
project(MPIIOAdapter VERSION ${HERMES_PACKAGE_VERSION})

# MPIIO src code. We only include mpiio.cc as it includes other cc to reduce compilation time.
set(MPIIO_ADAPTER_SRC mpiio.cc)
Expand Down
2 changes: 1 addition & 1 deletion adapter/posix/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project(PosixAdapter VERSION 0.4.0)
project(PosixAdapter VERSION ${HERMES_PACKAGE_VERSION})

# POSIX src code. We only include posix.cc as it includes other cc to reduce compilation time.
set(POSIX_ADAPTER_SRC posix.cc)
Expand Down
2 changes: 1 addition & 1 deletion adapter/pubsub/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project(PubSubAdapter VERSION 0.4.0)
project(PubSubAdapter VERSION ${HERMES_PACKAGE_VERSION})

set(HERMES_PUBSUB_ADAPTER_DIR ${HERMES_ADAPTER_DIR}/pubsub)

Expand Down
2 changes: 1 addition & 1 deletion adapter/stdio/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project(StdioAdapter VERSION 0.4.0)
project(StdioAdapter VERSION ${HERMES_PACKAGE_VERSION})

# STDIO src code. We only include stdio.cc as it includes other cc to reduce compilation time.
set(STDIO_ADAPTER_SRC stdio.cc)
Expand Down
6 changes: 3 additions & 3 deletions adapter/vfd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ project(HDF5_HERMES_VFD)
#------------------------------------------------------------------------------
# Version information
#------------------------------------------------------------------------------
set(HDF5_HERMES_VFD_VERSION_MAJOR "0")
set(HDF5_HERMES_VFD_VERSION_MINOR "4")
set(HDF5_HERMES_VFD_VERSION_PATCH "0")
set(HDF5_HERMES_VFD_VERSION_MAJOR ${HERMES_VERSION_MAJOR})
set(HDF5_HERMES_VFD_VERSION_MINOR ${HERMES_VERSION_MINOR})
set(HDF5_HERMES_VFD_VERSION_PATCH ${HERMES_VERSION_PATCH})
set(HDF5_HERMES_VFD_PACKAGE "hdf5_hermes_vfd")
set(HDF5_HERMES_VFD_PACKAGE_NAME "HDF5_HERMES_VFD")
set(HDF5_HERMES_VFD_PACKAGE_VERSION "${HDF5_HERMES_VFD_VERSION_MAJOR}.${HDF5_HERMES_VFD_VERSION_MINOR}.${HDF5_HERMES_VFD_VERSION_PATCH}")
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = Hermes
PROJECT_NUMBER = 0.4.0-beta
PROJECT_NUMBER = 0.5.0-beta
PROJECT_BRIEF = "I/O Buffering System"
PROJECT_LOGO =
OUTPUT_DIRECTORY =
Expand Down
2 changes: 1 addition & 1 deletion src/buffer_pool_visualizer/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

project(BufferPoolVisualizer VERSION 0.4.0)
project(BufferPoolVisualizer VERSION ${HERMES_PACKAGE_VERSION})

add_executable(bp_viz buffer_pool_visualizer.cc)

Expand Down

0 comments on commit 23839d9

Please sign in to comment.