Skip to content

Commit

Permalink
preparations for the 0.11.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikey Austin committed Jan 23, 2020
1 parent 172c8bb commit 7664727
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2020-01-23 Mikey Austin <[email protected]>

* Fix bug in proxy initialization
* Added container support

2020-01-01 Mikey Austin <[email protected]>

* Fix bug in sync module hmac ctx cleanup
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.68])
AC_INIT([greyd], [0.11.3], [[email protected]])
AC_INIT([greyd], [0.11.4], [[email protected]])
AC_USE_SYSTEM_EXTENSIONS
AM_INIT_AUTOMAKE
LT_INIT([dlopen])
Expand Down
2 changes: 2 additions & 0 deletions src/main_greyd.c
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,8 @@ int main(int argc, char** argv)
state.proxy_protocol_enabled = true;
Greyd_set_proxy_protocol_permitted_proxies(
Config_get_list(config, "proxy_protocol_permitted_proxies", NULL), &state);
} else {
state.proxy_protocol_enabled = false;
}

if (!Config_get_int(state.config, "enable", "grey", GREYLISTING_ENABLED)) {
Expand Down
5 changes: 4 additions & 1 deletion website/downloads.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@

<p>Grab the latest distribution:</p>
<ul>
<li>
<a href="https://github.com/mikey-austin/greyd/releases/download/v0.11.4/greyd-0.11.4.tar.gz">greyd-0.11.4.tar.gz</a> - 2020-01-23
</li>
<li>
<a href="https://github.com/mikey-austin/greyd/releases/download/v0.11.3/greyd-0.11.3.tar.gz">greyd-0.11.3.tar.gz</a> - 2019-12-30
</li>
Expand Down Expand Up @@ -74,7 +77,7 @@
</p>

<div class="highlight">
<code>$ tar xzf greyd-0.11.3.tar.gz && cd greyd-0.11.3
<code>$ tar xzf greyd-0.11.4.tar.gz && cd greyd-0.11.4
$ ./configure --with-sqlite --with-netfilter
$ make
$ sudo make install</code>
Expand Down

0 comments on commit 7664727

Please sign in to comment.