Skip to content

Commit

Permalink
chore: prepare new release
Browse files Browse the repository at this point in the history
  • Loading branch information
leonelcamara committed Jun 17, 2024
1 parent fd5ed43 commit 4912e9c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
17 changes: 17 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# hotxlfp changelog

## 0.0.16

* Fixed SWITCH formula returning N/A when the default value was "falsy" (like 0)

This release also brings a bunch of new supported formulas (Thanks Rodrigo Patrão)

* Support for SIGN function
* Support for SLOPE function
* Support for MAXIFS function
* Support for AVERAGEIFS
* Support for SUMIFS function
* Support for INT function
* Support for EDATE fuction
* Support for DATEDIF
* Support for NOW function
* Support for T, IMAGINARY and IMREAL

## 0.0.15

* Fixed bugs in FLOOR function.
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

setup(
name='hotxlfp',
version='0.0.15',
version='0.0.16',
packages=['hotxlfp', 'hotxlfp._compat', 'hotxlfp._compat.py3', 'hotxlfp.helper', 'hotxlfp.formulas', 'hotxlfp.grammarparser'],
license='MIT',
test_suite='tests',
author='Leonel Câmara',
author_email='[email protected]',
url='https://github.com/aidhound/hotxlfp',
download_url='https://github.com/aidhound/hotxlfp/archive/0.0.15.tar.gz',
download_url='https://github.com/aidhound/hotxlfp/archive/0.0.16.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('[!')),
Expand All @@ -24,7 +24,9 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
]
)

Expand Down

0 comments on commit 4912e9c

Please sign in to comment.