Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version #481

Merged
merged 4 commits into from
Aug 31, 2023
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 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 1
#define PSIBASE_VERSION_PATCH 6
#define PSIBASE_VERSION_MINOR 2
#define PSIBASE_VERSION_PATCH 0
10 changes: 5 additions & 5 deletions rust/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 rust/account_sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ publish = false
crate-type = ["cdylib", "staticlib"]

[dependencies]
fracpack = { version = "0.1.0", path = "../fracpack" }
psibase = { version = "0.1.0", path = "../psibase" }
fracpack = { version = "0.2.0", path = "../fracpack" }
psibase = { version = "0.2.0", path = "../psibase" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
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.1.0", path = "../psibase" }
psibase = { version = "0.2.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
4 changes: 2 additions & 2 deletions rust/cargo-psibase/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-psibase"
version = "0.1.3"
version = "0.2.0"
rust-version.workspace = true
repository.workspace = true
homepage.workspace = true
Expand All @@ -15,7 +15,7 @@ cargo_metadata = "0.15.0"
clap = {version = "3.1", features = ["derive"]}
console = "0.15.2"
parity-wasm = "0.45"
psibase = { version = "0.1.6", path = "../psibase" }
psibase = { version = "0.2.0", path = "../psibase" }
regex = "1"
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
Expand Down
4 changes: 2 additions & 2 deletions rust/fracpack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fracpack"
version = "0.1.7"
version = "0.2.0"
rust-version.workspace = true
repository.workspace = true
homepage.workspace = true
Expand All @@ -13,4 +13,4 @@ path = "src/fracpack.rs"

[dependencies]
custom_error = "1.9.2"
psibase_macros = { version = "0.1.6", path = "../psibase_macros" }
psibase_macros = { version = "0.2.0", path = "../psibase_macros" }
8 changes: 4 additions & 4 deletions rust/psibase/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "psibase"
version = "0.1.6"
version = "0.2.0"
rust-version.workspace = true
repository.workspace = true
homepage.workspace = true
Expand All @@ -13,12 +13,12 @@ anyhow = "1.0"
async-graphql = "4.0"
chrono = "0.4"
custom_error = "1.9"
fracpack = { version = "0.1.7", path = "../fracpack" }
fracpack = { version = "0.2.0", path = "../fracpack" }
futures = "0.3"
include_dir = "0.7.3"
mime_guess = "2.0"
psibase_macros = { version = "0.1.6", path = "../psibase_macros" }
psibase_names = { version = "0.1.5", path = "../psibase_names" }
psibase_macros = { version = "0.2.0", path = "../psibase_macros" }
psibase_names = { version = "0.2.0", path = "../psibase_names" }
ripemd = "0.1"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions rust/psibase_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "psibase_macros"
version = "0.1.6"
version = "0.2.0"
rust-version.workspace = true
repository.workspace = true
homepage.workspace = true
Expand All @@ -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.1.5", path = "../psibase_names" }
psibase_names = { version = "0.2.0", path = "../psibase_names" }
quote = "1.0.15"
syn = {version = "1.0.86", features = ["full", "visit-mut"] }
2 changes: 1 addition & 1 deletion rust/psibase_names/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "psibase_names"
version = "0.1.5"
version = "0.2.0"
rust-version.workspace = true
repository.workspace = true
homepage.workspace = true
Expand Down
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.1.0", path = "../psibase" }
psibase = { version = "0.2.0", path = "../psibase" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
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.1.0", path = "../fracpack" }
fracpack = { version = "0.2.0", path = "../fracpack" }
hex = "0.3.1"
psibase_macros = { version = "0.1.0", path = "../psibase_macros" }
psibase_macros = { version = "0.2.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.1.0", path = "../fracpack" }
psibase = { version = "0.1.0", path = "../psibase" }
fracpack = { version = "0.2.0", path = "../fracpack" }
psibase = { version = "0.2.0", path = "../psibase" }
serde = { version = "1.0.145", features = ["derive"] }
4 changes: 2 additions & 2 deletions rust/test_service_psispace/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.1.0", path = "../fracpack" }
psibase = { version = "0.1.0", path = "../psibase" }
fracpack = { version = "0.2.0", path = "../fracpack" }
psibase = { version = "0.2.0", path = "../psibase" }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0"
Loading