diff --git a/CHANGELOG.md b/CHANGELOG.md index ef08eb3..5c63b97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# Changelog + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [1.0.4](https://github.com/svange/openbrain/compare/v1.0.3...v1.0.4) (2023-11-13) + + +### Bug Fixes + +* catching AWS client error to allow for no-infra testing in CI pipelines. ([55573ad](https://github.com/svange/openbrain/commit/55573adc8734389ad3ea9f16fc0b280528320ec7)) + # CHANGELOG diff --git a/openbrain/__init__.py b/openbrain/__init__.py index f48c952..6507695 100644 --- a/openbrain/__init__.py +++ b/openbrain/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.3" +__version__ = "1.0.4" # import os # from pathlib import Path diff --git a/pyproject.toml b/pyproject.toml index 1def1e3..cbbf13d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openbrain" -version = "1.0.3" +version = "1.0.4" 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"