From f97c9626ae5720964be99ae322914224917264d6 Mon Sep 17 00:00:00 2001 From: juharris <1594505+juharris@users.noreply.github.com> Date: Mon, 22 Jun 2026 01:28:14 +0000 Subject: [PATCH] chore: bump versions (patch) --- elixir/optify/Cargo.lock | 4 ++-- elixir/optify/mix.exs | 2 +- elixir/optify/native/optify_nif/Cargo.toml | 4 ++-- js/optify-config/Cargo.toml | 2 +- js/optify-config/package.json | 2 +- python/optify/Cargo.lock | 4 ++-- python/optify/Cargo.toml | 4 ++-- python/optify/pyproject.toml | 4 ++-- ruby/optify/ext/optify_ruby/Cargo.toml | 4 ++-- ruby/optify/optify.gemspec | 2 +- rust/optify-cli/Cargo.toml | 4 ++-- rust/optify/Cargo.toml | 2 +- 12 files changed, 19 insertions(+), 19 deletions(-) diff --git a/elixir/optify/Cargo.lock b/elixir/optify/Cargo.lock index 5ccc9405..68054c4e 100644 --- a/elixir/optify/Cargo.lock +++ b/elixir/optify/Cargo.lock @@ -917,7 +917,7 @@ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" [[package]] name = "optify" -version = "1.3.1" +version = "1.3.2" dependencies = [ "config", "cow-utils", @@ -936,7 +936,7 @@ dependencies = [ [[package]] name = "optify_nif" -version = "0.2.1" +version = "0.2.2" dependencies = [ "optify", "rustler", diff --git a/elixir/optify/mix.exs b/elixir/optify/mix.exs index 59bc2e33..74636c71 100644 --- a/elixir/optify/mix.exs +++ b/elixir/optify/mix.exs @@ -1,7 +1,7 @@ defmodule Optify.MixProject do use Mix.Project - @version "0.3.1" + @version "0.3.2" @source_url "https://github.com/juharris/optify" @hex_url "https://hex.pm/packages/optify" @docs_url "https://hexdocs.pm/optify" diff --git a/elixir/optify/native/optify_nif/Cargo.toml b/elixir/optify/native/optify_nif/Cargo.toml index fb935676..484d977f 100644 --- a/elixir/optify/native/optify_nif/Cargo.toml +++ b/elixir/optify/native/optify_nif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "optify_nif" -version = "0.2.1" +version = "0.2.2" edition = "2021" [lib] @@ -10,6 +10,6 @@ crate-type = ["cdylib"] [dependencies] # Can't put a relative path here because then others can't install the hex package. # The workspace Cargo.toml patches this to the local crate during development. -optify = "1.3.1" +optify = "1.3.2" rustler = { version = "0.38.0", features = ["serde"] } serde_json = "1.0.149" diff --git a/js/optify-config/Cargo.toml b/js/optify-config/Cargo.toml index 7b6be70d..dbdfb7b3 100644 --- a/js/optify-config/Cargo.toml +++ b/js/optify-config/Cargo.toml @@ -11,7 +11,7 @@ crate-type = ["cdylib"] # serde-json is needed for serde_json::Value support napi = { version = "3.7.0", default-features = false, features = ["napi4", "serde-json"] } napi-derive = "3.4.0" -optify = { path = "../../rust/optify", version = "1.3.1" } +optify = { path = "../../rust/optify", version = "1.3.2" } serde_json = "1.0.149" [build-dependencies] diff --git a/js/optify-config/package.json b/js/optify-config/package.json index 50a3b69b..baeddeec 100644 --- a/js/optify-config/package.json +++ b/js/optify-config/package.json @@ -1,6 +1,6 @@ { "name": "@optify/config", - "version": "1.8.1", + "version": "1.8.2", "description": "Simplifies **configuration driven development**: getting the right configuration options for a process or request using pre-loaded configurations from files (JSON, YAML, etc.) to manage options for feature flags, experiments, or flights.", "keywords": [ "configuration" diff --git a/python/optify/Cargo.lock b/python/optify/Cargo.lock index e3601711..08071916 100644 --- a/python/optify/Cargo.lock +++ b/python/optify/Cargo.lock @@ -898,7 +898,7 @@ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" [[package]] name = "optify" -version = "1.3.1" +version = "1.3.2" dependencies = [ "config", "cow-utils", @@ -917,7 +917,7 @@ dependencies = [ [[package]] name = "optify-python" -version = "0.10.1" +version = "0.10.2" dependencies = [ "optify", "pyo3", diff --git a/python/optify/Cargo.toml b/python/optify/Cargo.toml index f8a11d5b..761a57f9 100644 --- a/python/optify/Cargo.toml +++ b/python/optify/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "optify-python" -version = "0.10.1" +version = "0.10.2" edition = "2021" description = "Simplifies getting the right configuration options for a process using pre-loaded configurations from files (JSON, YAML, etc.) to manage options for experiments or flights. This library is mainly made to support building implementations for other languages such as Node.js, Python, and Ruby. It is not meant to be consumed directly yet." @@ -14,5 +14,5 @@ name = "optify" crate-type = ["cdylib"] [dependencies] -optify = { path = "../../rust/optify", version = "1.3.1" } +optify = { path = "../../rust/optify", version = "1.3.2" } pyo3 = "0.29.0" \ No newline at end of file diff --git a/python/optify/pyproject.toml b/python/optify/pyproject.toml index b995fbac..f6c14531 100644 --- a/python/optify/pyproject.toml +++ b/python/optify/pyproject.toml @@ -26,11 +26,11 @@ build-backend = "maturin" [package] name = "optify" -version = "0.10.1" +version = "0.10.2" [tool.poetry] name = "optify" -version = "0.10.1" +version = "0.10.2" description = "Simplifies getting the right configuration options for a process using pre-loaded configurations from files to manage options for experiments or flights." authors = ["Justin D. Harris"] maintainers = ["Justin D. Harris"] diff --git a/ruby/optify/ext/optify_ruby/Cargo.toml b/ruby/optify/ext/optify_ruby/Cargo.toml index fa073c9f..b4c7ddb4 100644 --- a/ruby/optify/ext/optify_ruby/Cargo.toml +++ b/ruby/optify/ext/optify_ruby/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "optify_ruby" -version = "0.24.1" +version = "0.24.2" edition = "2021" description = "optify bindings for Ruby" @@ -22,6 +22,6 @@ crate-type = ["cdylib"] [dependencies] magnus = "0.8.2" # Can't put a relative path here because then others can't install the source gem: https://github.com/juharris/optify/pull/176 -optify = "1.3.1" +optify = "1.3.2" rb-sys = { version = "0.9.124", default-features = false, features = ["ruby-static"] } serde_json = "1.0.149" diff --git a/ruby/optify/optify.gemspec b/ruby/optify/optify.gemspec index 03d7a6b6..4b3205f1 100644 --- a/ruby/optify/optify.gemspec +++ b/ruby/optify/optify.gemspec @@ -1,6 +1,6 @@ # frozen_string_literal: true -VERSION = '1.22.1' +VERSION = '1.22.2' Gem::Specification.new do |spec| spec.name = 'optify-config' diff --git a/rust/optify-cli/Cargo.toml b/rust/optify-cli/Cargo.toml index 0699fcb2..8afeb28a 100644 --- a/rust/optify-cli/Cargo.toml +++ b/rust/optify-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "optify-cli" -version = "1.1.1" +version = "1.1.2" edition = "2021" description = "CLI for inspecting and querying Optify configuration options." @@ -18,5 +18,5 @@ path = "src/main.rs" [dependencies] clap = { version = "4.6.0", features = ["derive"] } -optify = { path = "../optify", version = "1.3.1" } +optify = { path = "../optify", version = "1.3.2" } serde_json = "1.0.149" diff --git a/rust/optify/Cargo.toml b/rust/optify/Cargo.toml index 47cd7565..21cd856d 100644 --- a/rust/optify/Cargo.toml +++ b/rust/optify/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "optify" -version = "1.3.1" +version = "1.3.2" edition = "2021" build = "build.rs"