Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version #32

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,34 @@

## [Unreleased]

## [0.6.0] - 2024-06-25

### Breaking Changes

- Responses from the Anthropic API are now encapsulated as data objects.
- Dropped support for Ruby versions prior to 3.2.4.

### Added

- Added link to `anthropic-rb-cookbook`.

### Removed

- Removed streaming contraint for tools use.

### Updated

- Refactored project for maintainability.
- Updated project funding.

## [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
Expand Down Expand Up @@ -70,7 +87,8 @@

- Initial release

[Unreleased]: https://github.com/dickdavis/anthropic-rb/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/dickdavis/anthropic-rb/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/dickdavis/anthropic-rb/compare/v0.5.0...v0.6.0
[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
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
anthropic-rb (0.5.0)
anthropic-rb (0.6.0)
httpx (>= 1.1.5)
json-schema (>= 4.1.1)

Expand Down
2 changes: 1 addition & 1 deletion lib/anthropic/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Anthropic
VERSION = '0.5.0'
VERSION = '0.6.0'
end
Loading