summaryrefslogtreecommitdiffstats
path: root/third_party/rust/bytemuck/changelog.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /third_party/rust/bytemuck/changelog.md
parentInitial commit. (diff)
downloadfirefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz
firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/bytemuck/changelog.md')
-rw-r--r--third_party/rust/bytemuck/changelog.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/third_party/rust/bytemuck/changelog.md b/third_party/rust/bytemuck/changelog.md
new file mode 100644
index 0000000000..9c2e2a9579
--- /dev/null
+++ b/third_party/rust/bytemuck/changelog.md
@@ -0,0 +1,25 @@
+# `bytemuck` changelog
+
+## 1.2.0
+
+* [thomcc](https://github.com/thomcc) added many things:
+ * A fully sound `offset_of!` macro [#10](https://github.com/Lokathor/bytemuck/pull/10)
+ * A `Contiguous` trait for when you've got enums with declared values
+ all in a row [#12](https://github.com/Lokathor/bytemuck/pull/12)
+ * A `TransparentWrapper` marker trait for when you want to more clearly
+ enable adding and removing a wrapper struct to its inner value
+ [#15](https://github.com/Lokathor/bytemuck/pull/15)
+ * Now MIRI is run on CI in every sigle push!
+ [#16](https://github.com/Lokathor/bytemuck/pull/16)
+
+## 1.1.0
+
+* [SimonSapin](https://github.com/SimonSapin) added `from_bytes`,
+ `from_bytes_mut`, `try_from_bytes`, and `try_from_bytes_mut` ([PR
+ Link](https://github.com/Lokathor/bytemuck/pull/8))
+
+## 1.0.1
+
+* Changed to the [zlib](https://opensource.org/licenses/Zlib) license.
+* Added much more proper documentation.
+* Reduced the minimum Rust version to 1.34