Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
James-Mart committed Jul 3, 2024
1 parent 85f168e commit b0dc55f
Show file tree
Hide file tree
Showing 22 changed files with 86 additions and 61 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ include(libraries/psibase/sdk/pack_service.cmake)

set(SERVICE_DIR ${CMAKE_CURRENT_BINARY_DIR}/share/psibase/packages)

set(PSIBASE_VERSION "0.10.0")
set(PSIBASE_VERSION "0.11.0")

psibase_package(
OUTPUT ${SERVICE_DIR}/Transact.psi
Expand Down
13 changes: 9 additions & 4 deletions dev/DemoApp1/plugin/Cargo.lock

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

13 changes: 9 additions & 4 deletions dev/DemoApp1/service/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 dev/DemoApp1/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ path = "src/lib.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
psibase_macros = { version = "0.10.0", path = "../../../rust/psibase_macros" }
psibase = { version = "0.10.0", path = "../../../rust/psibase" }
psibase_macros = { path = "../../../rust/psibase_macros" }
psibase = { path = "../../../rust/psibase" }
serde = { version = "1", features = ["derive"] }
async-graphql = "4.0"

Expand Down
2 changes: 1 addition & 1 deletion libraries/psibase/common/include/psibase/version.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once

#define PSIBASE_VERSION_MAJOR 0
#define PSIBASE_VERSION_MINOR 10
#define PSIBASE_VERSION_MINOR 11
#define PSIBASE_VERSION_PATCH 0
28 changes: 14 additions & 14 deletions rust/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 rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ members = [
]

[workspace.package]
version = "0.10.0"
version = "0.11.0"
rust-version = "1.64"
repository = "https://github.com/gofractally/psibase"
homepage = "https://psibase.io"
2 changes: 1 addition & 1 deletion rust/burst-transfer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ anyhow = "1.0"
chrono = "0.4"
clap = {version = "4.5", features = ["derive"]}
futures = "0.3"
psibase = { version = "0.10.0", path = "../psibase" }
psibase = { version = "0.11.0", path = "../psibase" }
rand = "0.8.5"
reqwest = { version = "0.11", default-features = false, features = ["json","rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion rust/cargo-psibase/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ wasm-opt = "0.116.0"
cargo_metadata = "0.18.1"
clap = { version = "4.4", features = ["derive"]}
console = "0.15.2"
psibase = { version = "0.10.0", path = "../psibase" }
psibase = { version = "0.11.0", path = "../psibase" }
regex = "1"
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion rust/fracpack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ path = "src/fracpack.rs"
custom_error = "1.9.2"
indexmap = { version = "2.2.6", features = ["std", "serde"] }
serde = { version = "1.0", features = ["derive", "rc"] }
psibase_macros = { version = "0.10.0", path = "../psibase_macros" }
psibase_macros = { version = "0.11.0", path = "../psibase_macros" }
6 changes: 3 additions & 3 deletions rust/psibase/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async-trait = "0.1.77"
chrono = "0.4"
const_format = "0.2"
custom_error = "1.9"
fracpack = { version = "0.10.0", path = "../fracpack" }
fracpack = { version = "0.11.0", path = "../fracpack" }
flate2 = "1.0"
futures = "0.3"
getrandom = { version = "0.2", features = ["js"] }
Expand All @@ -28,8 +28,8 @@ indexmap = { version = "2.2.6", features = ["std", "serde"] }
sha2 = "0.10"
mime_guess = "2.0"
percent-encoding = "2.3"
psibase_macros = { version = "0.10.0", path = "../psibase_macros" }
psibase_names = { version = "0.10.0", path = "../psibase_names" }
psibase_macros = { version = "0.11.0", path = "../psibase_macros" }
psibase_names = { version = "0.11.0", path = "../psibase_names" }
regex = "1"
ripemd = "0.1"
scopeguard = "1.2"
Expand Down
2 changes: 1 addition & 1 deletion rust/psibase_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ proc-macro = true
darling = "0.14"
proc-macro-error = "1.0.4"
proc-macro2 = "1.0.36"
psibase_names = { version = "0.10.0", path = "../psibase_names" }
psibase_names = { version = "0.11.0", path = "../psibase_names" }
quote = "1.0.15"
syn = {version = "1.0.86", features = ["full", "visit-mut"] }
2 changes: 1 addition & 1 deletion rust/test_contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ publish = false
crate-type = ["cdylib"]

[dependencies]
psibase = { version = "0.10.0", path = "../psibase" }
psibase = { version = "0.11.0", path = "../psibase" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
4 changes: 2 additions & 2 deletions rust/test_contract_2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ crate-type = ["cdylib"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
psibase_macros = { version = "0.10.0", path = "../psibase_macros" }
psibase = { version = "0.10.0", path = "../psibase" }
psibase_macros = { version = "0.11.0", path = "../psibase_macros" }
psibase = { version = "0.11.0", path = "../psibase" }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
async-graphql = "4.0"
4 changes: 2 additions & 2 deletions rust/test_fracpack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false

[dependencies]
cxx = "1.0"
fracpack = { version = "0.10.0", path = "../fracpack" }
fracpack = { version = "0.11.0", path = "../fracpack" }
hex = "0.3.1"
psibase_macros = { version = "0.10.0", path = "../psibase_macros" }
psibase_macros = { version = "0.11.0", path = "../psibase_macros" }

[build-dependencies]
cxx-build = "1.0"
4 changes: 2 additions & 2 deletions rust/test_service_elections/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ publish = false
crate-type = ["cdylib"]

[dependencies]
fracpack = { version = "0.10.0", path = "../fracpack" }
psibase = { version = "0.10.0", path = "../psibase" }
fracpack = { version = "0.11.0", path = "../fracpack" }
psibase = { version = "0.11.0", path = "../psibase" }
serde = { version = "1.0.145", features = ["derive"] }
4 changes: 2 additions & 2 deletions rust/test_service_sites/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ crate-type = ["cdylib"]

[dependencies]
async-graphql = "4.0"
fracpack = { version = "0.10.0", path = "../fracpack" }
psibase = { version = "0.10.0", path = "../psibase" }
fracpack = { version = "0.11.0", path = "../fracpack" }
psibase = { version = "0.11.0", path = "../psibase" }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0"
Loading

0 comments on commit b0dc55f

Please sign in to comment.