Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
fail-fast: false
matrix:
ruby:
- '3.2.4'
ruby: ['3.2', '3.3', '3.4', 'ruby']

steps:
- uses: actions/checkout@v7
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [Unreleased]

### Changed
- **Ruby floor raised to 3.2** (`required_ruby_version = ">= 3.2"`). The old `>= 3.0.0` claim was never true: the locked `async 2.24` (and `console`, `io-event` through it) already require Ruby 3.1, and Ruby 3.0/3.1 are EOL. CI now tests 3.2, 3.3, 3.4 and latest stable instead of a single pinned 3.2.4. Closes #15.

## [0.3.0] - 2025-08-18

### Added
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ gem "standard", "~> 1.3"
gem "vcr"
gem "webmock"
gem "timecop"
gem "benchmark" # bundled gem since Ruby 4.0; spec/performance requires it
gem "simplecov", require: false
gem "memory_profiler"
gem "rgl", "~> 0.6"
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ GEM
metrics (~> 0.12)
traces (~> 0.15)
base64 (0.2.0)
benchmark (0.5.0)
bigdecimal (3.1.8)
cgi (0.5.2)
concurrent-ruby (1.3.8)
Expand Down Expand Up @@ -203,6 +204,7 @@ PLATFORMS
DEPENDENCIES
agentic!
async (<= 2.37.0)
benchmark
console (<= 1.34.3)
dry-configurable (<= 1.3.0)
io-event (<= 1.11.2)
Expand Down
2 changes: 1 addition & 1 deletion agentic.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.description = "Easily build, manage, deploy, and run self-contained purpose-driven AI Agents."
spec.homepage = "https://github.com/codenamev/agentic"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.required_ruby_version = ">= 3.2"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/codenamev/agentic"
Expand Down