Skip to content

Commit

Permalink
Upgrade bindgen crate from 0.70 to 0.71 version (#36)
Browse files Browse the repository at this point in the history
- bump up MSRV to 1.82

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kai Ren <tyranron@gmail.com>
  • Loading branch information
dependabot[bot] and tyranron authored Dec 13, 2024
1 parent c46f5c5 commit 9011cf2
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
strategy:
fail-fast: false
matrix:
msrv: ["1.78.0"]
msrv: ["1.82.0"]
os: ["ubuntu", "macOS", "windows"]
runs-on: ${{ matrix.os }}-latest
steps:
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ All user visible changes to `tigerbeetle-unofficial`, `tigerbeetle-unofficial-co



## master

[Diff](/../../compare/v0.5.0%2B0.16.11...master) | [Milestone](/../../milestone/2)

### BC Breaks

- Bumped up [MSRV] to 1.82 due to used dependencies. ([#36])

[#36]: /../../pull/36




## [0.5.0+0.16.11] · 2024-12-02
[0.5.0+0.16.11]: /../../tree/v0.5.0%2B0.16.11

Expand Down Expand Up @@ -75,4 +88,5 @@ See [Git log](/../../compare/a4994b2da3914352b8d64adae0535189b4bc7b27...v0.3.0%2
[`tb_client` C library]: https://github.com/tigerbeetle/tigerbeetle/tree/main/src/clients/c
[Docker]: https://www.docker.com
[Git]: https://git-scm.com
[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
[Semantic Versioning 2.0.0]: https://semver.org
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ members = ["sys", "core"]
[workspace.package]
version = "0.5.0+0.16.11"
authors = ["Daria Sukhonina <dariasukhonina@gmail.com>"]
rust-version = "1.78"
rust-version = "1.82"
repository = "https://github.com/tigerbeetle-rust/tigerbeetle-unofficial"
license = "MIT OR Apache-2.0"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
========================

[![crates.io](https://img.shields.io/crates/v/tigerbeetle-unofficial.svg "crates.io")](https://crates.io/crates/tigerbeetle-unofficial)
[![Rust 1.78+](https://img.shields.io/badge/rustc-1.78+-lightgray.svg "Rust 1.78+")](https://blog.rust-lang.org/2024/05/02/Rust-1.78.0.html)
[![Rust 1.82+](https://img.shields.io/badge/rustc-1.82+-lightgray.svg "Rust 1.82+")](https://blog.rust-lang.org/2024/10/17/Rust-1.82.0.html)
[![CI](https://github.com/tigerbeetle-rust/tigerbeetle-unofficial/workflows/CI/badge.svg?branch=master "CI")](https://github.com/tigerbeetle-rust/tigerbeetle-unofficial/actions?query=workflow%3ACI+branch%3Amaster)
[![Rust docs](https://docs.rs/tigerbeetle-unofficial/badge.svg "Rust docs")](https://docs.rs/tigerbeetle-unofficial)

Expand Down
4 changes: 2 additions & 2 deletions sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bitflags = "2.6"
bytemuck = { version = "1.19", features = ["derive", "min_const_generics"] }

[build-dependencies]
bindgen = "0.70"
proc-macro2 = { version = "1.0", default-features = false }
bindgen = "0.71"
proc-macro2 = { version = "1.0.80", default-features = false }
quote = { version = "1.0", default-features = false }
syn = { version = "2.0", features = ["parsing", "full", "printing", "visit"], default-features = false }

0 comments on commit 9011cf2

Please sign in to comment.