Skip to content

Commit

Permalink
Release check-sieve v0.7
Browse files Browse the repository at this point in the history
Version 0.7:
 * Fix core dump which allowed enabling regex support on Linux.
 * Many small improvements to validation and RFC conformance.
 * Add support for Internet Message Access Protocol (IMAP) Events (RFC 6785).
 * Add support for Converting Messages Before Delivery (RFC 6558).
 * Adds emscripten support for check-sieve to allow for embedding
 libchecksieve on webpages (see checksieve.com).
 * Adds support for FreeBSD to the build system.
  • Loading branch information
dburkart committed Oct 22, 2021
1 parent 5a5f065 commit 3e0a9c4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Version 0.7:
* Fix core dump which allowed enabling regex support on Linux.
* Many small improvements to validation and RFC conformance.
* Add support for Internet Message Access Protocol (IMAP) Events (RFC 6785).
* Add support for Converting Messages Before Delivery (RFC 6558).
* Adds emscripten support for check-sieve to allow for embedding
libchecksieve on webpages (see checksieve.com).
* Adds support for FreeBSD to the build system.

Version 0.6:
* Add manpage for check-sieve(1).
* Add a --max-list-length option to validate list length.
Expand Down
2 changes: 1 addition & 1 deletion src/checksieve.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace sieve
{

#define LIBCHECKSIEVE_VERSION "0.7-dev"
#define LIBCHECKSIEVE_VERSION "0.7"

extern const char *version() {
return LIBCHECKSIEVE_VERSION;
Expand Down
2 changes: 1 addition & 1 deletion test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
library_dirs = ['./'] );

setup (name = 'CheckSieve',
version = '0.4',
version = '0.7',
description = 'Python interface to libchecksieve',
author = 'Dana Burkart',
author_email = '[email protected]',
Expand Down

0 comments on commit 3e0a9c4

Please sign in to comment.