From 2c91a4df4b6d44b9ef350c3e65d2b714fd03f378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonel=20C=C3=A2mara?= Date: Thu, 14 Jan 2021 19:57:10 +0000 Subject: [PATCH] New release changes --- changelog.md | 34 ---------------------------------- setup.py | 4 ++-- 2 files changed, 2 insertions(+), 36 deletions(-) delete mode 100644 changelog.md diff --git a/changelog.md b/changelog.md deleted file mode 100644 index 949e335..0000000 --- a/changelog.md +++ /dev/null @@ -1,34 +0,0 @@ -# hotxlfp changelog - -## 0.0.9 - -* Fixed bug with undefined variables not returning a #NAME? error - -## 0.0.8 - -* Fix bug with accented charactes in criteria - -## 0.0.7 - -* Fixed a bug with criteria evaluation in formulas such as COUNTIF - -## 0.0.6 - -* bidimensional arrays are now supported in some cases -* INDEX is now supported -* TEXTJOIN is now supported -* SUBSTITUTE is now supported -* LEN is now supported - -## 0.0.5 - -* DECIMAL is now supported -* BASE is now supported -* ISLOGICAL is now supported -* ISNUMBER is now supported -* DATEVALUE is now supported -* Much better implicit type conversion in operators - -## 0.0.4 - -First version that actually works if you install using pip diff --git a/setup.py b/setup.py index 00fc35e..7fad61c 100644 --- a/setup.py +++ b/setup.py @@ -4,14 +4,14 @@ setup( name='hotxlfp', - version='0.0.9', + version='0.0.10', packages=['hotxlfp', 'hotxlfp._compat', 'hotxlfp._compat.py3', 'hotxlfp.helper', 'hotxlfp.formulas', 'hotxlfp.grammarparser'], license='MIT', test_suite='tests', author='Leonel Câmara', author_email='leonelcamara@gmail.com', url='https://github.com/aidhound/hotxlfp', - download_url='https://github.com/aidhound/hotxlfp/archive/0.0.9.tar.gz', + download_url='https://github.com/aidhound/hotxlfp/archive/0.0.10.tar.gz', keywords=['excel', 'formula', 'parser'], install_requires=['ply', 'python-dateutil'], long_description='\n'.join(l for l in open('README.md', encoding="utf-8").readlines() if not l.startswith('[!')),