Skip to content

Commit bbbf3fe

Browse files
obieclaude
andcommitted
Release version 1.0.1
- Fixed PromptDeclarations module namespace issue (#8) - Removed Rails dependencies from PromptDeclarations - Fixed documentation showing incorrect openai: true usage (#9) - Added comprehensive tests for PromptDeclarations module - Improved error handling to catch StandardError 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 5287256 commit bbbf3fe

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [1.0.1] - 2025-06-04
2+
### Fixed
3+
- Fixed PromptDeclarations module namespace - now properly namespaced under Raix
4+
- Removed Rails.logger dependencies from PromptDeclarations for non-Rails environments
5+
- Fixed documentation example showing incorrect `openai: true` usage (should be model string)
6+
- Added comprehensive tests for PromptDeclarations module
7+
8+
### Changed
9+
- Improved error handling in PromptDeclarations to catch StandardError instead of generic rescue
10+
111
## [1.0.0] - 2025-06-04
212
### Breaking Changes
313
- **Deprecated `loop` parameter in ChatCompletion** - The system now automatically continues conversations after tool calls until the AI provides a text response. The `loop` parameter shows a deprecation warning but still works for backwards compatibility.

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
raix (1.0.0)
4+
raix (1.0.1)
55
activesupport (>= 6.0)
66
faraday-retry (~> 2.0)
77
open_router (~> 0.2)

lib/raix/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Raix
4-
VERSION = "1.0.0"
4+
VERSION = "1.0.1"
55
end

0 commit comments

Comments
 (0)