Skip to content

Commit

Permalink
Updating CHANGES and VERSION.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiwek committed Feb 25, 2020
1 parent 05fbc14 commit 4bfe735
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@

1.2.5 | 2020-02-22 16:07:31 -0800

* Release v1.2.5

* Fix accidential error/log output (Dominik Charousset, Corelight)

* GH-85: Improve python bindings Event validity checks (Jon Siwek, Corelight)

This adds a valid() method to broker.zeek.Event objects that may be
called after creating them to check if the data it parsed was valid
event data.

Also extended the name() and args() methods of broker.zeek.Event to
first check for validity to avoid segfaulting. If the validity check
fails, a ValueError exception is now thrown.

* Update RTD version labels for LTS (Jon Siwek, Corelight)

* Display version number for more RTD version labels (Jon Siwek, Corelight)

1.2.4 | 2019-11-26 09:29:18 -0800

* Update embedded CAF to 0.16.5 for OpenBSD fixes (Jon Siwek, Corelight)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.4
1.2.5
2 changes: 1 addition & 1 deletion broker/version.hh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using type = unsigned;

constexpr type major = 1;
constexpr type minor = 2;
constexpr type patch = 4;
constexpr type patch = 5;
constexpr auto suffix = "";

constexpr type protocol = 2;
Expand Down

0 comments on commit 4bfe735

Please sign in to comment.