Skip to content

Commit

Permalink
chore: Prepare v0.1.1 release (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjchambers authored Feb 1, 2024
1 parent e801510 commit 6ed1b12
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion dewy-client/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion dewy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dewy"
version = "0.1.0"
version = "0.1.1"
description = "Knowledge base service."
authors = ["Ben Chambers <ben.chambers@datastax.com>", "Ryan Michael <ryan.michael@datastax.com>"]
readme = "README.md"
Expand Down

0 comments on commit 6ed1b12

Please sign in to comment.