Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Prepare v0.1.1 release #60

Merged
merged 1 commit into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading