Skip to content

Commit

Permalink
Merge pull request flairNLP#3579 from flairNLP/release_0.15.0
Browse files Browse the repository at this point in the history
Release 0.15.0
  • Loading branch information
alanakbik authored Dec 20, 2024
2 parents f115931 + ca2c1e0 commit 68508cc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ document embeddings, including our proposed [Flair embeddings](https://www.aclwe
* **A PyTorch NLP framework.** Our framework builds directly on [PyTorch](https://pytorch.org/), making it easy to
train your own models and experiment with new approaches using Flair embeddings and classes.

Now at [version 0.14.0](https://github.com/flairNLP/flair/releases)!
Now at [version 0.15.0](https://github.com/flairNLP/flair/releases)!


## State-of-the-Art Models
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
from sphinx_github_style import get_linkcode_resolve
from torch.nn import Module

version = "0.14.0"
release = "0.14.0"
version = "0.15.0"
release = "0.15.0"
project = "flair"
author = importlib_metadata.metadata(project)["Author"]
copyright = f"2023 {author}"
Expand Down
2 changes: 1 addition & 1 deletion flair/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
device = torch.device("cpu")

# global variable: version
__version__ = "0.14.0"
__version__ = "0.15.0"
"""The current version of the flair library installed."""

# global variable: arrow symbol
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="flair",
version="0.14.0",
version="0.15.0",
description="A very simple framework for state-of-the-art NLP",
long_description=Path("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 68508cc

Please sign in to comment.