rubric_llm 0.6.0.rc1 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d32ed4cba47a2fac15973d05bbf531317fa8d80f4c42b277dae5c302884ae57
4
- data.tar.gz: a4bfbbc318593df77c33d36d41eda2e3d2f1b0cd4d0485fe9b8a61e72ee1519b
3
+ metadata.gz: a1129b7b842324735b232caf6a116451cb04b599187aac713ce20c5befda4295
4
+ data.tar.gz: 33fc34b74d756ded10b00227cc9c46de94aa3da8a17dd798dc49e94edee5ba15
5
5
  SHA512:
6
- metadata.gz: a63b324d6f721297415feb55f6232b2771d58a7ca86a4a2ff0903abffec3c5fc5ad638c3d32632ed27bbf6cafea666a8247dcfa418d3454df61e3856c6c83b0a
7
- data.tar.gz: 424912623b5f7f8157c91c10310c4e8ebe34e7406fcc146a3c146bd4e9de0cbe9b0100acc4b7a9a98174153f53178961f9c8233b120b3d3d23c11a5bf29bb360
6
+ metadata.gz: 19c150856bbb65ab6d1c85e0a80ab92c309fc4524f20ab2057323715f6dd506d24408e37263e37b13eb0d3b6410f7c56a47a2511cbb25d5d0a1d53872117e4ab
7
+ data.tar.gz: e3c83d54f10befc47c0a403f9784f33a634debae737201cf39b758784bc3a0c1f6760a08aab677d00c101eab6a5b67ee8d05626a39360d1d68fea5ab1304c767
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.6.0] - 2026-09-18
9
+
10
+ ### Changed
11
+
12
+ - Support stable RubyLLM 2.x with the `~> 2.0` dependency requirement, replacing the exact release-candidate pin
13
+ - Retain the RubyLLM 2 migration behavior introduced in 0.6.0.rc1, including optional temperature and provider protocol configuration
14
+
8
15
  ## [0.6.0.rc1] - 2026-09-08
9
16
 
10
17
  This prerelease targets RubyLLM `2.0.0.rc1` and supports RubyLLM 2 only. Applications that use RubyLLM 1.x should stay on RubricLLM `0.5.x`. Stable `0.6.0` waits for the final RubyLLM 2.0 release and the complete Ruby 3.4 and 4.0 test matrix.
data/README.md CHANGED
@@ -8,15 +8,15 @@ Lightweight LLM evaluation framework for Ruby, inspired by [DeepEval](https://gi
8
8
 
9
9
  Provider-agnostic evaluation with pluggable metrics, statistical A/B comparison, and test framework integration: no Rails, no ActiveRecord, no UI. Works anywhere Ruby runs.
10
10
 
11
- `0.6.0.rc1` is a prerelease for RubyLLM `2.0.0.rc1`. It supports RubyLLM 2 only. Applications that use RubyLLM 1.x should stay on RubricLLM `0.5.x`. Stable `0.6.0` waits for the final RubyLLM 2.0 release and the complete Ruby 3.4 and 4.0 test matrix.
11
+ RubricLLM `0.6.0` supports RubyLLM `~> 2.0` and Ruby 3.4 or later. Applications that use RubyLLM 1.x should stay on RubricLLM `0.5.x`.
12
12
 
13
13
  ## Installation
14
14
 
15
- Install the release candidate with both exact prerelease constraints in the same Gemfile change:
15
+ Update both gem constraints together:
16
16
 
17
17
  ```ruby
18
- gem "rubric_llm", "0.6.0.rc1"
19
- gem "ruby_llm", "2.0.0.rc1"
18
+ gem "rubric_llm", "~> 0.6.0"
19
+ gem "ruby_llm", "~> 2.0"
20
20
  ```
21
21
 
22
22
  Then resolve both gems together:
@@ -25,12 +25,12 @@ Then resolve both gems together:
25
25
  bundle update rubric_llm ruby_llm
26
26
  ```
27
27
 
28
- RubyLLM's upstream prerelease pin command is `bundle add ruby_llm --version 2.0.0.rc1`. If the application still has a RubyLLM 1.x constraint, update both constraints before running Bundler.
28
+ If the application still has a RubyLLM 1.x constraint, update both constraints before running Bundler.
29
29
 
30
30
  Or install directly:
31
31
 
32
32
  ```bash
33
- gem install rubric_llm --version 0.6.0.rc1 --pre
33
+ gem install rubric_llm --version 0.6.0
34
34
  ```
35
35
 
36
36
  ## Quick Start
@@ -403,7 +403,7 @@ Deep dives live in the [project wiki](https://github.com/dpaluy/rubric_llm/wiki)
403
403
  ## Requirements
404
404
 
405
405
  - Ruby >= 3.4
406
- - [ruby_llm](https://github.com/crmne/ruby_llm) = 2.0.0.rc1 for RubricLLM 0.6.0.rc1
406
+ - [ruby_llm](https://github.com/crmne/ruby_llm) ~> 2.0 for RubricLLM 0.6.0
407
407
  - An API key for your chosen LLM provider (set via RubyLLM configuration)
408
408
 
409
409
  ## Contributing
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubricLLM
4
- VERSION = "0.6.0.rc1"
4
+ VERSION = "0.6.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubric_llm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0.rc1
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Paluy
@@ -27,16 +27,16 @@ dependencies:
27
27
  name: ruby_llm
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
- - - '='
30
+ - - "~>"
31
31
  - !ruby/object:Gem::Version
32
- version: 2.0.0.rc1
32
+ version: '2.0'
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - '='
37
+ - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: 2.0.0.rc1
39
+ version: '2.0'
40
40
  description: Provider-agnostic LLM evaluation with pluggable metrics, statistical
41
41
  A/B comparison, and test framework integration. Ragas for Ruby, powered by RubyLLM.
42
42
  email: