diff --git a/README.md b/README.md index 1417445..8d5b3ac 100644 --- a/README.md +++ b/README.md @@ -226,8 +226,9 @@ If you're in a `poetry shell`, you can omit the `poetry run`: 1. Look at the [draft release](https://github.com/DewyKB/dewy/releases) to determine the suggested next version. 2. Create a PR updating the following locations to that version: a. [`pyproject.toml`](https://github.com/DewyKB/dewy/blob/main/pyproject.toml#L3) for `dewy` - b. API version in [`config.py`](https://github.com/DewyKB/dewy/blob/main/dewy/config.py#L69) - c. `openapi.yaml` and `dewy-client` by running `poe extract-openapi` and `poe update-client`. + b. [`pyproject.toml`](https://github.com/DewyKB/dewy/blob/main/dewy-client/pyproject.toml#L3) for `dewy-client` + c. API version in [`config.py`](https://github.com/DewyKB/dewy/blob/main/dewy/config.py#L69) + d. `openapi.yaml` and `dewy-client` by running `poe extract-openapi` and `poe update-client`. 3. Once that PR is in, edit the draft release, make sure the version and tag match what you selected in step 1 (and used in the PR), check "Set as a pre-release" (will be updated by the release automation) and choose to publish the release. 4. The release automation should kick in and work through the release steps. It will need approval for the pypi deployment environment to publish the `dewy` and `dewy-client` packages. diff --git a/dewy-client/pyproject.toml b/dewy-client/pyproject.toml index 0642ac6..4ac90af 100644 --- a/dewy-client/pyproject.toml +++ b/dewy-client/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dewy-client" -version = "0.1.0" +version = "0.1.1" description = "A client library for accessing Dewy Knowledge Base API" authors = [] readme = "README.md" diff --git a/dewy/config.py b/dewy/config.py index d88415a..666e20e 100644 --- a/dewy/config.py +++ b/dewy/config.py @@ -66,7 +66,7 @@ def custom_generate_unique_id_function(route: APIRoute) -> str: app_configs: dict[str, Any] = { "title": "Dewy Knowledge Base API", - "version": "0.1.0", + "version": "0.1.1", "summary": "Knowledge curation for Retrieval Augmented Generation", "description": API_DESCRIPTION, "servers": [ diff --git a/openapi.yaml b/openapi.yaml index c735646..90c3267 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -8,7 +8,7 @@ info: Knowledge comes in a variety of forms -- text, image, tables, etc. and from a variety of sources -- documents, web pages, audio, etc.' - version: 0.1.0 + version: 0.1.1 servers: - url: http://localhost:8000 description: Local server diff --git a/pyproject.toml b/pyproject.toml index f8b8865..2969e2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dewy" -version = "0.1.0" +version = "0.1.1" description = "Knowledge base service." authors = ["Ben Chambers ", "Ryan Michael "] readme = "README.md"