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

Upstream 2024.6.0 #22

Merged
merged 4 commits into from
Jun 11, 2024
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tonlib-sys"
version = "2024.4.0"
version = "2024.6.0"
edition = "2021"
description = "Rust bindings for tonlibjson library"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To use this library in your Rust application, add the following to your Cargo.to

```toml
[dependencies]
tonlib-sys = "2024.3"
tonlib-sys = "2024.6"
```

Then, in your Rust code, you can import the library with:
Expand Down
4 changes: 2 additions & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fn main() {
build();
}

const TON_MONOREPO_REVISION: &str = "4cfe1d1a96acf956e28e2bbc696a143489e23631";
const TON_MONOREPO_REVISION: &str = "v2024.06";
const TON_MONOREPO_DIR: &str = "./ton";

#[cfg(not(feature = "shared-tonlib"))]
Expand All @@ -30,7 +30,7 @@ fn build() {
.args([
"clone",
"--branch",
"v2024.04",
TON_MONOREPO_REVISION,
"--depth",
"1", // get only the latest commit
"--recurse-submodules", // clone submodules as well
Expand Down
Loading