We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0698f6a commit abb2f2cCopy full SHA for abb2f2c
pyconverse/__init__.py
@@ -1,4 +1,4 @@
1
-__version__ = '0.1.0'
+__version__ = '0.2.0'
2
from .insights import Callyzer
3
from .speaker_stats import SpeakerStats
4
from .zeroshot_topic_model import ZeroShotTopicFinder
pyproject.toml
@@ -1,6 +1,6 @@
[metadata]
name = 'pyconverse'
-version = '0.1.0'
+version = '0.2.0'
description = 'Coversational Transcript Analysis using various NLP techniques'
5
author = 'AnjanaRita'
6
author_email = 'ritaanjana1993@gmail.com'
setup.py
@@ -13,7 +13,7 @@
13
version = line.strip().split('=')[1].strip(' \'"')
14
break
15
else:
16
- version = '0.1.0'
+ version = '0.2.0'
17
18
with open('README.md', 'r', encoding='utf-8') as f:
19
readme = f.read()
0 commit comments