From 44a44e9ebb49b511b2a9a44968845aa377ef0198 Mon Sep 17 00:00:00 2001 From: Shneor <770elmo@gmail.com> Date: Sun, 13 Aug 2023 23:34:46 +0200 Subject: [PATCH] Upped package version --- README.md | 2 +- flashtext2/__init__.py | 3 +++ pyproject.toml | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e259dd0..eb5f5bf 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ --- -[![PyPi](https://img.shields.io/badge/PyPi-0.1.0-yellow)](https://pypi.org/project/flashtext2/) +[![PyPi](https://img.shields.io/badge/PyPi-0.2.0-yellow)](https://pypi.org/project/flashtext2/) [![Downloads](https://pepy.tech/badge/flashtext2)](https://pepy.tech/project/flashtext2) [![Downloads](https://pepy.tech/badge/flashtext2/month)](https://pepy.tech/project/flashtext2) diff --git a/flashtext2/__init__.py b/flashtext2/__init__.py index dc631d4..44cf917 100644 --- a/flashtext2/__init__.py +++ b/flashtext2/__init__.py @@ -1,5 +1,8 @@ from __future__ import annotations +__version__ = '0.2.0' +__author__ = 'Shneor E.' + from .keyword_processor import KeywordProcessor from .trie_dict import TrieDict from .exceptions import FlashTextException, WordNotFoundError diff --git a/pyproject.toml b/pyproject.toml index 88c2367..3757526 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [tool.poetry] name = "flashtext2" -version = "0.1.0" +version = "0.2.0" description = "A package for extracting keywords from large text very quickly (much faster than regex and the original flashtext package" -authors = ["Shneor Elmaleh <770elmo@gmail.com>"] +authors = ["Shneor E. <770elmo@gmail.com>"] license = "MIT" readme = "README.md"