Skip to content

Commit 8909bc1

Browse files
authored
Merge pull request #1705 from gofractally/bump-version
bump version to 0.23.0
2 parents 25dc525 + bc0db4d commit 8909bc1

94 files changed

Lines changed: 348 additions & 363 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ set(SERVICE_DIR ${CMAKE_CURRENT_BINARY_DIR}/share/psibase/packages)
319319
set(USER_WORKSPACE_TARGET ${CMAKE_CURRENT_SOURCE_DIR}/packages/user/target)
320320
set(SYSTEM_WORKSPACE_TARGET ${CMAKE_CURRENT_SOURCE_DIR}/packages/system/target)
321321

322-
set(PSIBASE_VERSION 0.22)
322+
set(PSIBASE_VERSION 0.23)
323323

324324
psibase_package(
325325
OUTPUT ${SERVICE_DIR}/Transact.psi

doc/src/development/services/rust-service/package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ package-name = "example"
4040
services = ["service1"]
4141

4242
[package.metadata.psibase.dependencies]
43-
HttpServer = "0.22.0"
43+
HttpServer = "0.23.0"
4444
```
4545

4646
./service/Cargo.toml
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
22

33
#define PSIBASE_VERSION_MAJOR 0
4-
#define PSIBASE_VERSION_MINOR 22
4+
#define PSIBASE_VERSION_MINOR 23
55
#define PSIBASE_VERSION_PATCH 0

package-templates/basic-01/cargo-generate.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[placeholders]
22
description = { prompt = "Enter a description of the package", default = "An example application", type = "string" }
3-
version = { prompt = "Enter the current psibase version", default = "0.22.0", type = "string", regex = "^[0-9]+.[0-9]+.[0-9]+$" }
3+
version = { prompt = "Enter the current psibase version", default = "0.23.0", type = "string", regex = "^[0-9]+.[0-9]+.[0-9]+$" }
44

55
[hooks]
66
pre = ["validate-project-name.rhai"]

packages/Cargo.lock

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

packages/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ strip = true
4141
lto = true
4242

4343
[workspace.package]
44-
version = "0.22.0"
44+
version = "0.23.0"
4545
edition = "2021"
4646
rust-version = "1.64"
4747
repository = "https://github.com/gofractally/psibase"
@@ -52,7 +52,7 @@ publish = false
5252
[workspace.dependencies]
5353
# Common dependencies for plugins
5454
async-graphql = "=7.0.17"
55-
psibase = { path = "../rust/psibase", version = "0.22.0" }
55+
psibase = { path = "../rust/psibase", version = "0.23.0" }
5656
serde = { version = "1.0.208", features = ["derive"] }
5757
serde_json = "1.0.125"
5858
psibase-plugin-workspace-hack = { version = "0.1.0", path = "plugin-workspace-hack" }

0 commit comments

Comments
 (0)