소스 검색

Release v0.2.0

luozhouyang 4 년 전
부모
커밋
2efcfe7a8f
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      setup.py
  2. 1 1
      strsimpy/__init__.py

+ 1 - 1
setup.py

@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
 
 setuptools.setup(
     name="strsimpy",
-    version="0.1.9",
+    version="0.2.0",
     description="A library implementing different string similarity and distance measures",
     long_description=long_description,
     long_description_content_type="text/markdown",

+ 1 - 1
strsimpy/__init__.py

@@ -37,4 +37,4 @@ from .weighted_levenshtein import WeightedLevenshtein
 from .sift4 import SIFT4Options, SIFT4
 
 __name__ = 'strsimpy'
-__version__ = '0.1.9'
+__version__ = '0.2.0'