Skip to content

Commit

Permalink
Fix docs url
Browse files Browse the repository at this point in the history
  • Loading branch information
DhruvSrikanth committed Nov 25, 2024
1 parent 30958bb commit 06c3f12
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
run: >-
gh release create
'v0.2.0'
'v0.2.1'
--repo '${{ github.repository }}'
--notes ""
Expand All @@ -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 }}'
2 changes: 1 addition & 1 deletion aifn/constants.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 06c3f12

Please sign in to comment.