Skip to content

Commit 952bb29

Browse files
committed
Release 0.6.0
1 parent 8eebc79 commit 952bb29

14 files changed

Lines changed: 24 additions & 24 deletions

File tree

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/go/internal/loader/loader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import (
3535

3636
// SDKVersion is the version baked into the Go SDK source tree. It is used both
3737
// for runtime cache namespacing and for the runtime/SDK compatibility check.
38-
const SDKVersion = "0.5.0"
38+
const SDKVersion = "0.6.0"
3939

4040
const (
4141
envRuntimePath = "OPENPIT_RUNTIME_LIBRARY_PATH"

bindings/python/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openpit-python"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
rust-version = "1.78"
66
publish = false
@@ -17,10 +17,10 @@ name = "_openpit"
1717
crate-type = ["cdylib"]
1818

1919
[dependencies]
20-
openpit = { version = "0.5.0", path = "../../crates/openpit", features = [
20+
openpit = { version = "0.6.0", path = "../../crates/openpit", features = [
2121
"serde",
2222
] }
23-
openpit-interop = { version = "0.5.0", path = "../../crates/openpit-interop" }
23+
openpit-interop = { version = "0.6.0", path = "../../crates/openpit-interop" }
2424
pyo3 = { version = "0.29", features = [
2525
"abi3-py310",
2626
"generate-import-lib",

crates/openpit-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openpit-derive"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
rust-version = "1.78"
66
license = "Apache-2.0"

crates/openpit-ffi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openpit-ffi"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
publish = false
66
license = "Apache-2.0"
@@ -11,8 +11,8 @@ description = "OpenPit FFI bindings"
1111
crate-type = ["cdylib"]
1212

1313
[dependencies]
14-
openpit = { version = "0.5.0", path = "../openpit", features = ["serde"] }
15-
openpit-interop = { version = "0.5.0", path = "../openpit-interop" }
14+
openpit = { version = "0.6.0", path = "../openpit", features = ["serde"] }
15+
openpit-interop = { version = "0.6.0", path = "../openpit-interop" }
1616
rust_decimal = "1"
1717
serde_json = "1"
1818
rmp-serde = "1"

crates/openpit-interop/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "openpit-interop"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
publish = false
66
license = "Apache-2.0"
77
repository = "https://github.com/openpitkit/pit"
88
description = "Runtime interoperability layer for OpenPit language bindings"
99

1010
[dependencies]
11-
openpit = { version = "0.5.0", path = "../openpit" }
11+
openpit = { version = "0.6.0", path = "../openpit" }

crates/openpit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openpit"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
rust-version = "1.78"
66
license = "Apache-2.0"
@@ -17,7 +17,7 @@ serde = ["dep:serde", "rust_decimal/serde", "smol_str/serde"]
1717

1818
[dependencies]
1919
arc-swap = "1"
20-
openpit-derive = { path = "../openpit-derive", version = "=0.5.0", optional = true }
20+
openpit-derive = { path = "../openpit-derive", version = "=0.6.0", optional = true }
2121
parking_lot = "0.12"
2222
rust_decimal = "1.41"
2323
serde = { version = "1", features = ["derive"], optional = true }

examples/go/rate_pnl_killswitch/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module openpit-example-rate-pnl-killswitch
22

33
go 1.22
44

5-
require go.openpit.dev/openpit v0.5.0
5+
require go.openpit.dev/openpit v0.6.0
66

77
require github.com/shopspring/decimal v1.4.0 // indirect
88

examples/go/spot_funds/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module openpit-example-spot-funds
22

33
go 1.22
44

5-
require go.openpit.dev/openpit v0.5.0
5+
require go.openpit.dev/openpit v0.6.0
66

77
require github.com/shopspring/decimal v1.4.0 // indirect
88

examples/go/spot_loadtest/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/HdrHistogram/hdrhistogram-go v1.2.0
77
github.com/shirou/gopsutil/v4 v4.25.4
88
github.com/shopspring/decimal v1.4.0
9-
go.openpit.dev/openpit v0.5.0
9+
go.openpit.dev/openpit v0.6.0
1010
gopkg.in/ini.v1 v1.67.0
1111
)
1212

0 commit comments

Comments
 (0)