Skip to content

Commit 1f9f7ba

Browse files
committed
Version 1.4.2
1 parent 9b5e22b commit 1f9f7ba

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.rst

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ Changelog
33
=========
44

55

6+
1.4.2 (2018-05-11)
7+
------------------
8+
9+
* Fix typo in logger name (@TheDr1ver)
10+
* Don't add already attached tag to events
11+
* Tested with Python 3.5 and MISP 2.4.89
12+
13+
614
1.4.1 (2017-08-25)
715
------------------
816

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
year = '2017'
2828
author = u'Gaetan Crahay'
2929
copyright = '{0}, {1}'.format(year, author)
30-
version = release = u'1.4.1'
30+
version = release = u'1.4.2'
3131

3232
pygments_style = 'trac'
3333
templates_path = ['.']

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def read(*names, **kwargs):
2424

2525
setup(
2626
name='otx-misp',
27-
version='1.4.1',
27+
version='1.4.2',
2828
license='Apache 2.0',
2929
description='Imports Alienvault OTX pulses to a MISP instance.',
3030
long_description='%s\n%s' % (

src/otx_misp/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
except NameError:
1717
basestring = str
1818

19-
__version__ = "1.4.1"
19+
__version__ = "1.4.2"
2020

2121
# Try to disable verify SSL warnings
2222
try:

0 commit comments

Comments
 (0)