Skip to content

Commit

Permalink
Release v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Feb 12, 2022
1 parent cd8af8c commit 97d6638
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/releasebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest hypothesis pandas mypy
pip install pytest hypothesis pandas mypy rapidfuzz_capi Cython==3.0.0a10
# The cythonized files allow installation from the sdist without cython
- name: Generate cython
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Changelog

### [2.0.2] - 2022-02-12
#### Fixed
- fix type hints
- Add back transpiled cython files to the sdist to simplify builds in package builders
like FreeBSD port build or conda-forge


### [2.0.1] - 2022-02-11
#### Fixed
- fix type hints
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Max Bachmann'

# The full version, including alpha/beta/rc tags
release = '2.0.1'
release = '2.0.2'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="rapidfuzz",
version="2.0.1",
version="2.0.2",
extras_require={'full': ['numpy']},
url="https://github.com/maxbachmann/RapidFuzz",
author="Max Bachmann",
Expand Down
2 changes: 1 addition & 1 deletion src/cython/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ curdir="${0%/*}"

generate_cython()
{
python -m cython -I "$curdir" --cplus "$curdir"/"$1".pyx -o "$curdir"/"$1".cxx
python -m cython -I "$curdir" --cplus "$curdir"/"$1".pyx -o "$curdir"/"$1".cxx || exit 1
echo "Generated $curdir/$1.cxx"
}

Expand Down
2 changes: 1 addition & 1 deletion src/rapidfuzz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
__author__ = "Max Bachmann"
__license__ = "MIT"
__version__ = "2.0.1"
__version__ = "2.0.2"

from rapidfuzz import (
process,
Expand Down

0 comments on commit 97d6638

Please sign in to comment.