Skip to content

Commit 0606af1

Browse files
committed
prepare 0.3.4
1 parent e64572c commit 0606af1

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Diff for: CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# 0.3.3 - 2023-11-01
1+
# [0.3.4] - 2025-04-06
2+
3+
- Implement `ReadAt` and `Size` for `Arc<RandomAccessFile>`.
4+
- Start specifying minimum supported Rust version (currently 1.71).
5+
6+
# [0.3.3] - 2023-11-01
27

38
* Add `Slice::{into_inner,get_ref,get_mut,offset,set_offset}()`.
49

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "positioned-io"
3-
version = "0.3.3" # remember to update html_root_url, changelog and readme example
3+
version = "0.3.4" # remember to update html_root_url, changelog and readme example
44
authors = ["Dave Vasilevsky <[email protected]>", "Niklas Fiekas <[email protected]>"]
55
description = "Reading and writing at an offset"
66
keywords = ["read", "offset", "pread", "pwrite", "endian"]

Diff for: src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
//! # }
117117
//! ```
118118
119-
#![doc(html_root_url = "https://docs.rs/positioned-io/0.3.3")]
119+
#![doc(html_root_url = "https://docs.rs/positioned-io/0.3.4")]
120120
#![warn(missing_debug_implementations)]
121121
#![warn(bare_trait_objects)]
122122

0 commit comments

Comments
 (0)