Skip to content
This repository was archived by the owner on Mar 22, 2023. It is now read-only.

Commit

Permalink
common: 1.5.1-rc1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinslusarz committed Feb 8, 2019
1 parent 42ac1b2 commit 7038d89
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,16 @@ project(pmdk-convert C)

set(VERSION_MAJOR 1)
set(VERSION_MINOR 5)
set(VERSION_PATCH 1)
set(VERSION_PRERELEASE rc1)

set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR})
if (VERSION_PATCH GREATER 0)
set(VERSION ${VERSION}.${VERSION_PATCH})
endif()
if (VERSION_PRERELEASE)
set(VERSION ${VERSION}-${VERSION_PRERELEASE})
endif()

set(CMAKE_DISABLE_IN_SOURCE_BUILD ON)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
Expand Down
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Fri Feb 08 2018 Marcin Ślusarz <[email protected]>

* Version 1.5.1-rc1

This release fixes minor bugs.

- conversion should fail if stdin is empty
- remote poolset should be detected before layout detection

Fri Oct 26 2018 Marcin Ślusarz <[email protected]>

* Version 1.5
Expand Down

0 comments on commit 7038d89

Please sign in to comment.