Skip to content

Commit

Permalink
Upgrade version and changelog (#1, #2)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianrandman committed Jun 21, 2024
1 parent e5ee06f commit 839f7e9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bertopic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from bertopic._bertopic import BERTopic

__version__ = "0.16.2"
__version__ = "0.16.2.0"

__all__ = [
"BERTopic",
Expand Down
19 changes: 19 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,25 @@ hide:

# Changelog

## **Version 0.16.2.0**
*Release date: 21 June, 2024*

<h3><b>Highlights:</a></b></h3>

* Add support for multiple topics per document when zero-shot topic modeling
[#1](https://github.com/semandex/BERTopic/issues/1)

<h3><b>Fixes:</a></b></h3>

* Fix downstream operations after zero-shot topic modeling
[#2](https://github.com/semandex/BERTopic/issues/2)
* Validate number of topics when using zero-shot topic modeling
* Remove check for `type(self.hdbscan_model) != BaseCluster` when checking whether model is zero-shot
* Derive `self._outliers` rather than tracking it to maintain alignment
* Derive zero-shot labels when requested rather than tracking it
* Fix typos related to `topic_to`, `topics_from` for mapping
* Validate existence of outliers in `reduce_outliers()`

## **Version 0.16.2**
*Release date: 12 May, 2024*

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@
long_description = fh.read()

setup(
name="bertopic",
name="semandex-bertopic",
packages=find_packages(exclude=["notebooks", "docs"]),
version="0.16.2",
author="Maarten P. Grootendorst",
version="0.16.2.0",
author="Maarten P. Grootendorst, Semandex Networks Inc",
author_email="maartengrootendorst@gmail.com",
description="BERTopic performs topic Modeling with state-of-the-art transformer models.",
long_description=long_description,
Expand Down

0 comments on commit 839f7e9

Please sign in to comment.