From d9b606a4456f5544da3fdfea7e44a6d9ea0f8026 Mon Sep 17 00:00:00 2001 From: kadekillary Date: Thu, 20 Aug 2026 14:38:36 -0700 Subject: [PATCH] chore(release): bump version to 0.12.0 --- CHANGELOG.md | 11 ++++++++++- Gemfile.lock | 2 +- lib/langfuse/version.rb | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1a1a42..e3e2f34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.0] - 2026-08-20 + +### Changed +- Require Faraday 2.14.3 or newer, dropping Faraday 1.x compatibility (#115). + +### Fixed +- Prevent consumers from resolving vulnerable Faraday, JSON, and concurrent-ruby versions (#115). + ## [0.11.0] - 2026-08-19 > [!NOTE] @@ -165,7 +173,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Migrated from legacy ingestion API to OTLP endpoint - Removed `tracing_enabled` configuration flag (#2) -[Unreleased]: https://github.com/simplepractice/langfuse-rb/compare/v0.11.0...HEAD +[Unreleased]: https://github.com/simplepractice/langfuse-rb/compare/v0.12.0...HEAD +[0.12.0]: https://github.com/simplepractice/langfuse-rb/compare/v0.11.0...v0.12.0 [0.11.0]: https://github.com/simplepractice/langfuse-rb/compare/v0.10.1...v0.11.0 [0.10.1]: https://github.com/simplepractice/langfuse-rb/compare/v0.10.0...v0.10.1 [0.10.0]: https://github.com/simplepractice/langfuse-rb/compare/v0.9.0...v0.10.0 diff --git a/Gemfile.lock b/Gemfile.lock index 36b974f..a4b5f83 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - langfuse-rb (0.11.0) + langfuse-rb (0.12.0) base64 (~> 0.2) concurrent-ruby (>= 1.3.7, < 2.0) faraday (>= 2.14.3, < 3) diff --git a/lib/langfuse/version.rb b/lib/langfuse/version.rb index ba30d2e..d6b013a 100644 --- a/lib/langfuse/version.rb +++ b/lib/langfuse/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Langfuse - VERSION = "0.11.0" + VERSION = "0.12.0" end