From 31a3f7b1d6895e644f7f2b127b9d3855770bbed2 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 20 Feb 2026 04:17:33 +0000 Subject: [PATCH 1/2] chore: update mock server docs --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7c42c6c..41d0ef6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -68,8 +68,8 @@ $ bundle exec rake Most tests require you to [set up a mock server](https://github.com/stoplightio/prism) against the OpenAPI spec to run the tests. -```bash -$ npx prism mock path/to/your/openapi.yml +```sh +$ ./scripts/mock ``` ```bash From 026b4b5ed2f7df841dd77968291f2c6761a0e7e1 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 20 Feb 2026 04:17:48 +0000 Subject: [PATCH 2/2] release: 0.10.8 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/openlayer/version.rb | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c7b8cc6..1014d1b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.7" + ".": "0.10.8" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index eef1edb..0dc6908 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.10.8 (2026-02-20) + +Full Changelog: [v0.10.7...v0.10.8](https://github.com/openlayer-ai/openlayer-ruby/compare/v0.10.7...v0.10.8) + +### Chores + +* update mock server docs ([31a3f7b](https://github.com/openlayer-ai/openlayer-ruby/commit/31a3f7b1d6895e644f7f2b127b9d3855770bbed2)) + ## 0.10.7 (2026-02-10) Full Changelog: [v0.10.6...v0.10.7](https://github.com/openlayer-ai/openlayer-ruby/compare/v0.10.6...v0.10.7) diff --git a/Gemfile.lock b/Gemfile.lock index 5e3deb1..884fe75 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - openlayer (0.10.7) + openlayer (0.10.8) cgi connection_pool diff --git a/README.md b/README.md index 591a12c..a669c9c 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "openlayer", "~> 0.10.7" +gem "openlayer", "~> 0.10.8" ``` diff --git a/lib/openlayer/version.rb b/lib/openlayer/version.rb index 3a3efc5..de86e98 100644 --- a/lib/openlayer/version.rb +++ b/lib/openlayer/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Openlayer - VERSION = "0.10.7" + VERSION = "0.10.8" end