Skip to content
Merged
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 elixir/optify/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion elixir/optify/mix.exs
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions elixir/optify/native/optify_nif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "optify_nif"
version = "0.2.1"
version = "0.2.2"
edition = "2021"

[lib]
Expand All @@ -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"
2 changes: 1 addition & 1 deletion js/optify-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion js/optify-config/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions python/optify/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions python/optify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand All @@ -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"
4 changes: 2 additions & 2 deletions python/optify/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions ruby/optify/ext/optify_ruby/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "optify_ruby"
version = "0.24.1"
version = "0.24.2"
edition = "2021"

description = "optify bindings for Ruby"
Expand All @@ -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"
2 changes: 1 addition & 1 deletion ruby/optify/optify.gemspec
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
4 changes: 2 additions & 2 deletions rust/optify-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand All @@ -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"
2 changes: 1 addition & 1 deletion rust/optify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "optify"
version = "1.3.1"
version = "1.3.2"
edition = "2021"
build = "build.rs"

Expand Down
Loading