Update Logspace link and package versions (#1604)

* Update Logspace link and version display

* Update package versions in pyproject.toml

---------

Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@logspace.ai>
This commit is contained in:
anovazzi1 2024-04-04 11:13:46 -03:00 committed by GitHub
commit e1286a06fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "langflow"
version = "1.0.0a6"
version = "1.0.0a7"
description = "A Python package with a built-in web application"
authors = ["Logspace <contact@logspace.ai>"]
maintainers = [

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "langflow-base"
version = "0.0.19"
version = "0.0.20"
description = "A Python package with a built-in web application"
authors = ["Logspace <contact@logspace.ai>"]
maintainers = [

View file

@ -37,11 +37,11 @@ export default function FlowPage({ view }: { view?: boolean }): JSX.Element {
)}
<a
target={"_blank"}
href="https://logspace.ai/"
href="https://medium.com/logspace/langflow-datastax-better-together-1b7462cebc4d"
className="logspace-page-icon"
>
{version && <div className="mt-1"> Langflow v{version}</div>}
<div className={version ? "mt-2" : "mt-1"}>Created by Logspace</div>
{version && <div className="mt-1">Langflow 🤝 DataStax</div>}
<div className={version ? "mt-2" : "mt-1"}> v{version}</div>
</a>
</div>
</>