Skip to content

Commit 01d3926

Browse files
authored
Update trantor version to v1.0.0-rc6 (#57)
1 parent 99ba85b commit 01d3926

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ target_link_libraries(${PROJECT_NAME} PRIVATE pthread)
9898
set_target_properties(${PROJECT_NAME} PROPERTIES CXX_STANDARD 14)
9999
set_target_properties(${PROJECT_NAME} PROPERTIES CXX_STANDARD_REQUIRED ON)
100100
set_target_properties(${PROJECT_NAME} PROPERTIES CXX_EXTENSIONS OFF)
101+
set_target_properties(${PROJECT_NAME} PROPERTIES EXPORT_NAME Trantor)
101102

102103
if(MAKETEST STREQUAL YES)
103104
add_subdirectory(trantor/tests)

ChangeLog.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
55

6+
## [1.0.0-rc6] - 2019-10-4
7+
8+
### API change list
9+
10+
- Add index() interface to the EventLoop class.
11+
12+
### Changed
13+
14+
- Fix some compilation warnings.
15+
16+
- Modify the CMakeLists.txt
17+
618
## [1.0.0-rc5] - 2019-08-24
719

820
### API change list
@@ -55,7 +67,9 @@ All notable changes to this project will be documented in this file.
5567

5668
## [1.0.0-rc1] - 2019-06-11
5769

58-
[Unreleased]: https://github.com/an-tao/trantor/compare/v1.0.0-rc5...HEAD
70+
[Unreleased]: https://github.com/an-tao/trantor/compare/v1.0.0-rc6...HEAD
71+
72+
[1.0.0-rc6]: https://github.com/an-tao/trantor/compare/v1.0.0-rc5...v1.0.0-rc6
5973

6074
[1.0.0-rc5]: https://github.com/an-tao/trantor/compare/v1.0.0-rc4...v1.0.0-rc5
6175

cmake/templates/TrantorConfig.cmake.in

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
get_filename_component(TRANTOR_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
1515
if(NOT TARGET Trantor::Trantor)
1616
include("${TRANTOR_CMAKE_DIR}/TrantorTargets.cmake")
17-
set_target_properties(Trantor::trantor PROPERTIES IMPORTED_GLOBAL TRUE)
18-
add_library(Trantor::Trantor ALIAS Trantor::trantor)
1917
endif()
2018

2119
set(TRANTOR_FOUND TRUE)

0 commit comments

Comments
 (0)