From b2f4f1c0f949443d9539c3d92f2a92c62cc17f2a Mon Sep 17 00:00:00 2001 From: Vineeth Voruganti <13438633+VVoruganti@users.noreply.github.com> Date: Thu, 9 May 2024 13:19:34 -0700 Subject: [PATCH] Documentation --- README.md | 2 +- api/CHANGELOG.md | 19 +++++++++++++++++++ api/pyproject.toml | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6d40e5a..2542be2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # 🫡 Honcho -![Static Badge](https://img.shields.io/badge/Version-0.0.7-blue) +![Static Badge](https://img.shields.io/badge/Version-0.0.8-blue) [![Discord](https://img.shields.io/discord/1016845111637839922?style=flat&logo=discord&logoColor=23ffffff&label=Plastic%20Labs&labelColor=235865F2)](https://discord.gg/plasticlabs) ![GitHub License](https://img.shields.io/github/license/plastic-labs/honcho) ![GitHub Repo stars](https://img.shields.io/github/stars/plastic-labs/honcho) diff --git a/api/CHANGELOG.md b/api/CHANGELOG.md index 734bbba..70b5008 100644 --- a/api/CHANGELOG.md +++ b/api/CHANGELOG.md @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.0.8] — 2024-05-09 + +### Added + +* Documentation to OpenAPI +* Bearer token auth to OpenAPI routes +* Get by ID routes for users and collections + +### Changed + +* Authentication Middleware now implemented using built-in FastAPI Security +module +* Get by name routes for users and collections now include "name" in slug + +### Fixed + +* Error reporting for methods with integrity errors due to unique key +constraints + ## [0.0.7] — 2024-04-01 ### Added diff --git a/api/pyproject.toml b/api/pyproject.toml index 87ca662..e5131d5 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "honcho" -version = "0.0.7" +version = "0.0.8" description = "Honcho Server" authors = ["Plastic Labs "] readme = "README.md"