From 51901234ae4d48d395c3d4922e36ff92d250f2e0 Mon Sep 17 00:00:00 2001 From: Dick Davis Date: Mon, 22 Apr 2024 21:50:35 -0500 Subject: [PATCH] Update version to 0.5.0 (#21) --- CHANGELOG.md | 12 +++++++++++- Gemfile.lock | 2 +- lib/anthropic/version.rb | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36a2312..bd08e82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## [0.5.0] - 2024-04-22 + +### Updated + +- Refactored project for maintainability. + +### Breaking Changes +- You must now pass the beta ID when enabling a beta feature. The only current beta is for Tools (id: tools-2024-04-04). Previously, you would pass `true` to enable the beta. + ## [0.4.0] - 2024-04-20 ### Added @@ -57,7 +66,8 @@ - Initial release -[Unreleased]: https://github.com/dickdavis/anthropic-rb/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/dickdavis/anthropic-rb/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/dickdavis/anthropic-rb/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/dickdavis/anthropic-rb/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/dickdavis/anthropic-rb/compare/v0.2.5...v0.3.0 [0.2.5]: https://github.com/dickdavis/anthropic-rb/compare/v0.2.3...v0.2.5 diff --git a/Gemfile.lock b/Gemfile.lock index c87d24a..8d1e043 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - anthropic-rb (0.4.0) + anthropic-rb (0.5.0) httpx (>= 1.1.5) json-schema (>= 4.1.1) diff --git a/lib/anthropic/version.rb b/lib/anthropic/version.rb index eded74c..372a912 100644 --- a/lib/anthropic/version.rb +++ b/lib/anthropic/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Anthropic - VERSION = '0.4.0' + VERSION = '0.5.0' end