Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 7fc7d9e

Browse files
authored
Upgrade to v0.5.1 (#197)
* version-bump * update-release-info
1 parent 2832396 commit 7fc7d9e

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

Diff for: docs/releases.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
v0.5.1
2+
3+
- Added a guide on debiasing on the docs.
4+
- You can now specify the plot axes and title.
5+
- We've added sensible default values to "plot_interactive".
6+
We now assume that you want to plot the first two elements of a vector.
7+
8+
```python
9+
# Before
10+
emb.transform(Pca(2)).plot_interactive('pca_0', 'pca_1')
11+
# After
12+
emb.transform(Pca(2)).plot_interactive()
13+
```
14+
115
v0.5.0
216

317
- Added some robustness tot he `matplotlib` based arrow and scatter charts.

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
setup(
6565
name="whatlies",
66-
version="0.5.0",
66+
version="0.5.1",
6767
author="Vincent D. Warmerdam",
6868
packages=find_packages(exclude=["notebooks", "docs"]),
6969
description="Tools to help uncover `whatlies` in word embeddings.",

Diff for: whatlies/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Whatlies library
33
"""
4-
__version__ = "0.5.0"
4+
__version__ = "0.5.1"
55

66
from whatlies.embeddingset import EmbeddingSet
77
from whatlies.embedding import Embedding

0 commit comments

Comments
 (0)