From 06c3f12296e98b3d5dab07edbb92c146c15f0677 Mon Sep 17 00:00:00 2001 From: DhruvSrikanth Date: Mon, 25 Nov 2024 13:13:32 -0500 Subject: [PATCH] Fix docs url --- .github/workflows/release.yml | 4 ++-- aifn/constants.py | 2 +- mkdocs.yml | 2 +- pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e89e837..19ce5a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -90,7 +90,7 @@ jobs: GITHUB_TOKEN: ${{ github.token }} run: >- gh release create - 'v0.2.0' + 'v0.2.1' --repo '${{ github.repository }}' --notes "" @@ -102,5 +102,5 @@ jobs: # sigstore-produced signatures and certificates. run: >- gh release upload - 'v0.2.0' dist/** + 'v0.2.1' dist/** --repo '${{ github.repository }}' diff --git a/aifn/constants.py b/aifn/constants.py index fe7d6a4..b18a963 100644 --- a/aifn/constants.py +++ b/aifn/constants.py @@ -1,4 +1,4 @@ -__version__ = "0.2.0" # DO NOT EDIT (this is the package version) +__version__ = "0.2.1" # DO NOT EDIT (this is the package version) MAX_TEXT_LENGTH = 1e6 # 1 million characters MAX_IMAGE_UPLOADS = 10 # 10 images MAX_IMAGE_SIZE_MB = 10 # 10 MB diff --git a/mkdocs.yml b/mkdocs.yml index c080dcb..596cf3b 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,6 @@ # Project information site_name: AI Function -site_url: https://WecoAI.github.io/aifn +site_url: https://WecoAI.github.io/aifn-python site_author: Weco AI site_description: >- Documentation for `aifn`, a client-side API for interacting with Weco AI's AI functions. diff --git a/pyproject.toml b/pyproject.toml index e889783..2bddc30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ authors = [ ] description = "Documentation for `aifn`, a client facing API for interacting with the WecoAI's AI functions." readme = "README.md" -version = "0.2.0" +version = "0.2.1" license = {text = "MIT"} requires-python = ">=3.8" dependencies = ["requests", "asyncio", "nest_asyncio", "httpx[http2]", "pillow"]