Skip to content

Commit

Permalink
Merge pull request #695 from gofractally/bump-version
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
James-Mart authored May 6, 2024
2 parents 5c94053 + f19dbec commit 79526a0
Show file tree
Hide file tree
Showing 16 changed files with 37 additions and 37 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ include(libraries/psibase/sdk/pack_service.cmake)

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

set(PSIBASE_VERSION "0.8.0")
set(PSIBASE_VERSION "0.9.0")

psibase_package(
OUTPUT ${SERVICE_DIR}/Transact.psi
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 8
#define PSIBASE_VERSION_MINOR 9
#define PSIBASE_VERSION_PATCH 0
26 changes: 13 additions & 13 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 @@ -16,7 +16,7 @@ members = [
]

[workspace.package]
version = "0.8.0"
version = "0.9.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 = "3.1", features = ["derive"]}
futures = "0.3"
psibase = { version = "0.8.0", path = "../psibase" }
psibase = { version = "0.9.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.8.0", path = "../psibase" }
psibase = { version = "0.9.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 @@ -13,4 +13,4 @@ path = "src/fracpack.rs"

[dependencies]
custom_error = "1.9.2"
psibase_macros = { version = "0.8.0", path = "../psibase_macros" }
psibase_macros = { version = "0.9.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,16 +19,16 @@ async-trait = "0.1.77"
chrono = "0.4"
const_format = "0.2"
custom_error = "1.9"
fracpack = { version = "0.8.0", path = "../fracpack" }
fracpack = { version = "0.9.0", path = "../fracpack" }
flate2 = "1.0"
futures = "0.3"
getrandom = { version = "0.2", features = ["js"] }
include_dir = "0.7.3"
sha2 = "0.10"
mime_guess = "2.0"
percent-encoding = "2.3"
psibase_macros = { version = "0.8.0", path = "../psibase_macros" }
psibase_names = { version = "0.8.0", path = "../psibase_names" }
psibase_macros = { version = "0.9.0", path = "../psibase_macros" }
psibase_names = { version = "0.9.0", path = "../psibase_names" }
regex = "1"
ripemd = "0.1"
serde = { version = "1.0", features = ["derive", "rc"] }
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.8.0", path = "../psibase_names" }
psibase_names = { version = "0.9.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.8.0", path = "../psibase" }
psibase = { version = "0.9.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,7 +13,7 @@ crate-type = ["cdylib"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
psibase_macros = { version = "0.8.0", path = "../psibase_macros" }
psibase = { version = "0.8.0", path = "../psibase" }
psibase_macros = { version = "0.9.0", path = "../psibase_macros" }
psibase = { version = "0.9.0", path = "../psibase" }
serde = { version = "1", features = ["derive"] }
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.8.0", path = "../fracpack" }
fracpack = { version = "0.9.0", path = "../fracpack" }
hex = "0.3.1"
psibase_macros = { version = "0.8.0", path = "../psibase_macros" }
psibase_macros = { version = "0.9.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.8.0", path = "../fracpack" }
psibase = { version = "0.8.0", path = "../psibase" }
fracpack = { version = "0.9.0", path = "../fracpack" }
psibase = { version = "0.9.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.8.0", path = "../fracpack" }
psibase = { version = "0.8.0", path = "../psibase" }
fracpack = { version = "0.9.0", path = "../fracpack" }
psibase = { version = "0.9.0", path = "../psibase" }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0"
8 changes: 4 additions & 4 deletions services/user/Invite/plugin/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 services/user/XAdmin/ui/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2471,7 +2471,7 @@ waait@^1.0.5:
integrity sha512-wp+unA4CpqxvBUKHHv8D86fK4jWByHAWyhEXXVHfVUZfK+16ylpj7hjQ58Z8j9ntu8XNukRQT8Fi5qbyJ8rkyw==

"wasm-psibase@file:./wasm-psibase":
version "0.8.0"
version "0.9.0"

which-boxed-primitive@^1.0.2:
version "1.0.2"
Expand Down

0 comments on commit 79526a0

Please sign in to comment.