Skip to content

Commit 06c3f12

Browse files
committed
Fix docs url
1 parent 30958bb commit 06c3f12

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
GITHUB_TOKEN: ${{ github.token }}
9191
run: >-
9292
gh release create
93-
'v0.2.0'
93+
'v0.2.1'
9494
--repo '${{ github.repository }}'
9595
--notes ""
9696
@@ -102,5 +102,5 @@ jobs:
102102
# sigstore-produced signatures and certificates.
103103
run: >-
104104
gh release upload
105-
'v0.2.0' dist/**
105+
'v0.2.1' dist/**
106106
--repo '${{ github.repository }}'

aifn/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.0" # DO NOT EDIT (this is the package version)
1+
__version__ = "0.2.1" # DO NOT EDIT (this is the package version)
22
MAX_TEXT_LENGTH = 1e6 # 1 million characters
33
MAX_IMAGE_UPLOADS = 10 # 10 images
44
MAX_IMAGE_SIZE_MB = 10 # 10 MB

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Project information
22
site_name: AI Function
3-
site_url: https://WecoAI.github.io/aifn
3+
site_url: https://WecoAI.github.io/aifn-python
44
site_author: Weco AI
55
site_description: >-
66
Documentation for `aifn`, a client-side API for interacting with Weco AI's AI functions.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
]
1111
description = "Documentation for `aifn`, a client facing API for interacting with the WecoAI's AI functions."
1212
readme = "README.md"
13-
version = "0.2.0"
13+
version = "0.2.1"
1414
license = {text = "MIT"}
1515
requires-python = ">=3.8"
1616
dependencies = ["requests", "asyncio", "nest_asyncio", "httpx[http2]", "pillow"]

0 commit comments

Comments
 (0)