Skip to content

Commit

Permalink
Update version to 1.0.0
Browse files Browse the repository at this point in the history
Also update SOVERSION to use only the major version number to better
reflect the intended backward compatibility of these libraries in
future.
  • Loading branch information
leonlynch committed Apr 23, 2023
1 parent 8b92b33 commit 6c97ca2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
cmake_minimum_required(VERSION 3.16)

project(dukpt
VERSION 0.2.5
VERSION 1.0.0
DESCRIPTION "DUKPT libraries and tools"
HOMEPAGE_URL "https://github.com/openemv/dukpt"
LANGUAGES C
Expand Down
3 changes: 3 additions & 0 deletions rpm_changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Sun Apr 23 2023 Leon Lynch <lynch.leon@gmail.com> - 1.0.0-1
- Update to dukpt-1.0.0

* Sun Dec 11 2022 Leon Lynch <lynch.leon@gmail.com> - 0.2.5-1
- Update to dukpt-0.2.5
- Require tr31-0.4.5
Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ set_target_properties(dukpt_tdes
PROPERTIES
PUBLIC_HEADER dukpt_tdes.h
VERSION ${CMAKE_PROJECT_VERSION}
SOVERSION ${CMAKE_PROJECT_VERSION_MAJOR}.${CMAKE_PROJECT_VERSION_MINOR}
SOVERSION ${CMAKE_PROJECT_VERSION_MAJOR}
)
target_include_directories(dukpt_tdes PRIVATE ${CMAKE_CURRENT_BINARY_DIR}) # For generated config file
target_include_directories(dukpt_tdes INTERFACE
Expand All @@ -91,7 +91,7 @@ set_target_properties(dukpt_aes
PROPERTIES
PUBLIC_HEADER dukpt_aes.h
VERSION ${CMAKE_PROJECT_VERSION}
SOVERSION ${CMAKE_PROJECT_VERSION_MAJOR}.${CMAKE_PROJECT_VERSION_MINOR}
SOVERSION ${CMAKE_PROJECT_VERSION_MAJOR}
)
target_include_directories(dukpt_aes PRIVATE ${CMAKE_CURRENT_BINARY_DIR}) # For generated config file
target_include_directories(dukpt_aes INTERFACE
Expand Down

0 comments on commit 6c97ca2

Please sign in to comment.