Skip to content

Commit

Permalink
MAINT prepare 2.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mfeurer committed Aug 16, 2018
1 parent 17c5295 commit db15e4c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
What's New on LIAC-ARFF
=======================

LIAC-ARFF 2.3.1

* maintenance: replace two bare ``raise`` by appropriate ``raise Exception``
statements
* maintenance: avoid deprecation warning in Python >= 3.6

LIAC-ARFF 2.3

- enh: improvements to loading runtime (issue #76)
- enhancement: improvements to loading runtime (issue #76)
- fix: several bugs in decoding and encoding quoted and escaped values,
particularly in loading sparse ARFF.
- fix #52: Circumvent a known bug when loading sparse data written by WEKA
Expand Down
2 changes: 1 addition & 1 deletion arff.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
__author_email__ = ('renato.ppontes@gmail.com, '
'feurerm@informatik.uni-freiburg.de, '
'joel.nothman@gmail.com')
__version__ = '2.3'
__version__ = '2.3.1'

import re
import sys
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
__author_email__ = ('renato.ppontes@gmail.com, '
'feurerm@informatik.uni-freiburg.de, '
'joel.nothman@gmail.com')
__version__ = '2.3'
__date__ = '2018 07 07'
__version__ = '2.3.1'
__date__ = '2018 07 16'

try:
import setuptools
Expand Down

0 comments on commit db15e4c

Please sign in to comment.