vtable: increase version number to account for breaking change in vtable::Dyn

This commit is contained in:
Olivier Goffart 2024-02-26 13:30:04 +01:00
parent 8888e547a5
commit 8bc4c4e053
14 changed files with 16 additions and 14 deletions

View file

@ -3,6 +3,10 @@
# Changelog
All notable changes to this crate will be documented in this file.
## [0.2.0]
- Make `Dyn` not Send or Sync, thereby fixing a soundness hole
## [0.1.12] - 2024-02-26
- Fix error reported by miri

View file

@ -3,7 +3,7 @@
[package]
name = "vtable"
version = "0.1.12"
version = "0.2.0"
authors = ["Slint Developers <info@slint.dev>"]
edition = "2021"
license = "MIT OR Apache-2.0"
@ -14,7 +14,7 @@ homepage = "https://slint.dev"
[lib]
[dependencies]
vtable-macro = { version = "=0.1.12", path = "./macro" }
vtable-macro = { version = "=0.2.0", path = "./macro" }
const-field-offset = { version = "0.1", path = "../const-field-offset" }
stable_deref_trait = { version = "1.2.0", default-features = false }
portable-atomic = "1"

View file

@ -3,7 +3,7 @@
[package]
name = "vtable-macro"
version = "0.1.12"
version = "0.2.0"
authors = ["Slint Developers <info@slint.dev>"]
edition = "2021"
license = "MIT OR Apache-2.0"