Skip to content

Commit eb293c3

Browse files
committed
releasebot: release-version-change pyembed 0.22.0-pre -> 0.22.0
1 parent 720fa74 commit eb293c3

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyembed-bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tempfile = "3.2"
1616
zip = { version = "0.6", default-features = false, features = ["deflate"] }
1717

1818
[dependencies.pyembed]
19-
version = "0.22.0-pre"
19+
version = "0.22.0"
2020
path = "../pyembed"
2121
default-features = false
2222
features = ["zipimport"]

pyembed/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pyembed"
33
# Remember to keep this version string in sync with the PYEMBED_CRATE_VERSION
44
# constant in pyoxidizer's environment.rs. The release automation should do
55
# this automatically.
6-
version = "0.22.0-pre"
6+
version = "0.22.0"
77
authors = ["Gregory Szorc <[email protected]>"]
88
edition = "2021"
99
license = "Python-2.0 OR MPL-2.0"

pyoxidizer/src/environment.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use {
2323
const PYOXIDIZER_CRATE_VERSION: &str = env!("CARGO_PKG_VERSION");
2424

2525
/// Version string of pyembed crate from its Cargo.toml.
26-
const PYEMBED_CRATE_VERSION: &str = "0.22.0-pre";
26+
const PYEMBED_CRATE_VERSION: &str = "0.22.0";
2727

2828
/// URL of Git repository we were built from.
2929
const GIT_REPO_URL: &str = env!("GIT_REPO_URL");

pyoxidizer/src/new-project-cargo.lock

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,9 @@ dependencies = [
270270

271271
[[package]]
272272
name = "pyembed"
273-
version = "0.22.0-pre"
273+
version = "0.22.0"
274+
source = "registry+https://github.com/rust-lang/crates.io-index"
275+
checksum = "4e4c3b7ffc74f5ff16df38530eec8f2647dd00ab089206a4d06b7cffe959d5b1"
274276
dependencies = [
275277
"anyhow",
276278
"dunce",

pyoxy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ serde = { version = "1.0", features = ["derive"] }
1818
serde_yaml = "0.8"
1919

2020
[dependencies.pyembed]
21-
version = "0.22.0-pre"
21+
version = "0.22.0"
2222
path = "../pyembed"
2323
default-features = false
2424
features = ["serialization", "zipimport"]

0 commit comments

Comments
 (0)