Skip to content

Commit 3220e0e

Browse files
committed
New release 0.4.1 with changed session module name.
This is a bad hack to resolve a clash with the fody backend package, which also contains the session module. The real solution will be to create an independent session package and use it by fody, webinput and maybe the intelmq-manager...
1 parent b9f8966 commit 3220e0e

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

NEWS.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
NEWS
22
====
33

4+
0.4.1 (2021-10-01)
5+
------------------
6+
7+
Changed name of session module to webinput_session so it does not
8+
clash with Fody's session module.
9+
410
0.4.0 (2021-09-30)
511
------------------
612

debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
intelmq-webinput-csv (0.4.1) experimental; urgency=medium
2+
3+
* Changed name of session module to webinput_session so it does not
4+
clash with Fody's session module.
5+
6+
-- Sascha Wilde <[email protected]> Fri, 01 Oct 2021 18:51:06 +0200
7+
18
intelmq-webinput-csv (0.4.0) experimental; urgency=medium
29

310
* Rewrite of certat/intelmq-webinput-csv by Sebastian Wagner.

intelmq_webinput_csv/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) 2017-2018 nic.at GmbH <[email protected]>
22
# SPDX-License-Identifier: AGPL-3.0
3-
__version_info__ = (0, 4, 0)
3+
__version_info__ = (0, 4, 1)
44
__version__ = '.'.join(map(str, __version_info__))

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
maintainer_email='[email protected]',
2121
packages=[
2222
'intelmq_webinput_csv',
23-
'session',
23+
'webinput_session',
2424
],
2525
install_requires=[
2626
'hug',

0 commit comments

Comments
 (0)