diff --git a/CHANGELOG.md b/CHANGELOG.md index e43f9ff..54aedae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## [Unreleased] +## [0.6.0] 2023-06-05 + +- Fix failure to rescue from API call exceptions. +- Fix embedding loading into Embedding resource. + ## [0.5.0] 2023-05-26 - Adds method `get_or_create` to Collection class. diff --git a/Gemfile.lock b/Gemfile.lock index 55bfdda..89b8477 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - chroma-db (0.5.0) + chroma-db (0.6.0) dry-monads (~> 1.6) ruby-next (>= 0.15.0) diff --git a/lib/chroma/version.rb b/lib/chroma/version.rb index 2253783..c75a247 100644 --- a/lib/chroma/version.rb +++ b/lib/chroma/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Chroma - VERSION = "0.5.0" + VERSION = "0.6.0" end