Skip to content

Commit

Permalink
Prepare release 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rseichter committed Feb 18, 2023
1 parent b479712 commit bfb77b8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog
=========

Release 1.6.0 (2023-02-18)

- Use Python context management protocol to improve SQLAlchemy session handling, in particular to more reliably
release resources like database connections.

Release 1.5.0 (2021-10-12)

- When running external commands, Fangfrisch now catches all types of exceptions, not only those in the
Expand Down
2 changes: 1 addition & 1 deletion docs/fangfrisch.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Fangfrisch
Ralph Seichter <fangfrisch@seichter.de>
v1.5.0, {docdate}
v1.6.0, {docdate}
:copyright: © 2020-2023 Ralph Seichter
:encoding: UTF-8
:hyphens: en
Expand Down
Binary file modified docs/fangfrisch.pdf
Binary file not shown.
8 changes: 4 additions & 4 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -445,8 +445,8 @@ <h1>Fangfrisch</h1>
<div class="details">
<span id="author" class="author">Ralph Seichter</span><br>
<span id="email" class="email"><a href="mailto:fangfrisch@seichter.de">fangfrisch@seichter.de</a></span><br>
<span id="revnumber">version 1.5.0,</span>
<span id="revdate">2023-01-07</span>
<span id="revnumber">version 1.6.0,</span>
<span id="revdate">2023-02-18</span>
</div>
<div id="toc" class="toc2">
<div id="toctitle">Table of Contents</div>
Expand Down Expand Up @@ -1224,8 +1224,8 @@ <h3 id="_accessing_mappings"><a class="anchor" href="#_accessing_mappings"></a>C
</div>
<div id="footer">
<div id="footer-text">
Version 1.5.0<br>
Last updated 2023-01-07 23:00:28 +0100
Version 1.6.0<br>
Last updated 2023-02-18 19:27:39 +0100
</div>
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion fangfrisch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
You should have received a copy of the GNU General Public License
along with Fangfrisch. If not, see <https://www.gnu.org/licenses/>.
"""
__version__ = '1.6.0.dev1'
__version__ = '1.6.0'


class ClamavItem:
Expand Down
1 change: 1 addition & 0 deletions fangfrisch/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"""
import argparse
import sys

from fangfrisch import __version__
from fangfrisch.config import LOG_METHOD_CONSOLE
from fangfrisch.config import LOG_METHOD_SYSLOG
Expand Down

0 comments on commit bfb77b8

Please sign in to comment.