Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@ https://github.com/rtrlib/rtrlib/commits/master

Release History:

* Version 0.6.0
* Version 0.6.2
- Add C++ support by disabling name mangling for RTRlib symbols
- Make pfx_table, pfx_table_init(), pfx_table_add(),
pfx_table_free(), pfx_table_src_remove() public; to use RTRlib
without online connection to an RPKI cache server
- Hide symbols of Tommy hash table without using forward declaration,
to resolve dependency on C11
- Fix cmake build errors in Debian and OpenBSD
- Add connection timeout in tests/test_dynamic_groups

* Version 0.6.1
- Fix for cmake versions >= 2.8
- Fix rpm build
- Fix Ubuntu 12.04 build
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ ADD_TEST(test_dynamic_groups tests/test_dynamic_groups)
#install lib
set (RTRLIB_VERSION_MAJOR 0)
set (RTRLIB_VERSION_MINOR 6)
set (RTRLIB_VERSION_PATCH 1)
set (RTRLIB_VERSION_PATCH 2)
CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/rtrlib/rtrlib.h.cmake ${CMAKE_SOURCE_DIR}/rtrlib/rtrlib.h)
set(LIBRARY_VERSION ${RTRLIB_VERSION_MAJOR}.${RTRLIB_VERSION_MINOR}.${RTRLIB_VERSION_PATCH})
set(LIBRARY_SOVERSION ${RTRLIB_VERSION_MAJOR})
Expand Down
12 changes: 12 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
librtr0 (0.6.2.0) stable; urgency=high
* Add C++ support by disabling name mangling for RTRlib symbols
* Make pfx_table, pfx_table_init(), pfx_table_add(),
pfx_table_free(), pfx_table_src_remove() public; to use RTRlib
without online connection to an RPKI cache server
* Hide symbols of Tommy hash table without using forward declaration,
to resolve dependency on C11
* Fix cmake build errors in Debian and OpenBSD
* Add connection timeout in tests/test_dynamic_groups

-- Matthias Waehlisch <[email protected]> Fri, 30 Nov 2018 17:31:00 +0100

librtr0 (0.6.1.0) stable; urgency=high
* Fix for cmake versions >= 2.8
* Fix rpm build
Expand Down
2 changes: 1 addition & 1 deletion redhat/SPECS/librtr.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: librtr
Version: 0.6.1
Version: 0.6.2
Release: 1%{?dist}
Summary: Small extensible RPKI-RTR-Client C library
Group: Development/Libraries
Expand Down