diff --git a/CHANGELOG.md b/CHANGELOG.md index 261eb37..4e55cd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.3](https://github.com/svange/openbrain/compare/v1.0.2...v1.0.3) (2023-11-13) + + +### Bug Fixes + +* catching AWS client error to allow for no-infra testing in CI pipelines. ([7f5c401](https://github.com/svange/openbrain/commit/7f5c40133266d6fd70656f3dfdb84b8b90738e82)) + ## [1.0.2](https://github.com/svange/openbrain/compare/v1.0.1...v1.0.2) (2023-11-13) diff --git a/openbrain/__init__.py b/openbrain/__init__.py index 2f99d00..f48c952 100644 --- a/openbrain/__init__.py +++ b/openbrain/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.2" +__version__ = "1.0.3" # import os # from pathlib import Path diff --git a/pyproject.toml b/pyproject.toml index ab1769b..1def1e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbrain" -version = "1.0.2" +version = "1.0.3" description = "A package to interact with generative AI and build specialized generative AI workflows. This project is dual-licensed under AGPL-3.0 and a separate commercial license." authors = ["Samuel Vange <7166607+svange@users.noreply.github.com>"] readme = "README.md"