-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version number to 2.3.0. (#246)
- Loading branch information
Showing
2 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ AC_PREREQ([2.68]) | |
|
||
# bgpstream package version | ||
m4_define([PKG_MAJOR_VERSION], [2]) | ||
m4_define([PKG_MID_VERSION], [1]) | ||
m4_define([PKG_MID_VERSION], [3]) | ||
m4_define([PKG_MINOR_VERSION], [0]) | ||
|
||
AC_INIT([libbgpstream], PKG_MAJOR_VERSION.PKG_MID_VERSION.PKG_MINOR_VERSION, [[email protected]]) | ||
|
@@ -40,7 +40,7 @@ AC_INIT([libbgpstream], PKG_MAJOR_VERSION.PKG_MID_VERSION.PKG_MINOR_VERSION, [bg | |
# If changes break ABI compatability: CURRENT++, REVISION=0, AGE=0 | ||
# elseif changes only add to ABI: CURRENT++, REVISION=0, AGE++ | ||
# else changes do not affect ABI: REVISION++ | ||
LIBBGPSTREAM_SHLIB_CURRENT=3 | ||
LIBBGPSTREAM_SHLIB_CURRENT=4 | ||
LIBBGPSTREAM_SHLIB_REVISION=0 | ||
LIBBGPSTREAM_SHLIB_AGE=0 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
libbgpstream2 (2.3.0) unstable; urgency=medium | ||
|
||
* Downgrade parsebgp invalid message log to warning. | ||
* Return parsebgp-invalid as corrupted message. | ||
* Remove valid-record check from bgpreader. | ||
* Add -J option to exclude collector peers by ASN. | ||
* Fix "infinite" batch size bug when update timestamps are not in sync. | ||
* Remove repeated call to AM_INIT_AUTOMAKE in configure.ac. | ||
* Update ax_pthread.m4. | ||
* Bring the common submodule up to date. | ||
* Resource manager: place limit on number of unconfirmed opened elements. | ||
|
||
-- Brendon Jones <[email protected]> Fri, 09 Feb 2024 18:43:11 +1300 | ||
|
||
libbgpstream2 (2.2.0) unstable; urgency=medium | ||
|
||
* Kafka: Kafka transport performance improvements | ||
|