Skip to content

Commit bbd638a

Browse files
committed
prepare for publish
1 parent 5aa272b commit bbd638a

File tree

10 files changed

+32
-13
lines changed

10 files changed

+32
-13
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/erasable/README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ There are two main useful reasons to type erase pointers in Rust:
1818

1919
## Changelist
2020

21+
### 1.3.0
22+
#### Changed
23+
- Updated MSRV to 1.80
24+
2125
### 1.2.0
2226
#### Added
2327
- `impl ErasablePtr for Thin<P>`: the obvious impl; `Thin` is erased internally
@@ -82,8 +86,7 @@ I'd love to remove this hack if it turns out unnecessary after all
8286

8387
## Minimum Supported Rust Version
8488

85-
We require a minimum Rust version of 1.41.0.
86-
This is for an adjustment of local trait impl checking.
89+
We require a minimum Rust version of 1.80.0.
8790

8891
Minimum version support is only guaranteed with minimal version resolution
8992
(`-Z minimal-versions`/`--minimal-versions`) due to how dependencies are handled.

crates/ptr-union/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "ptr-union"
33
version = "2.3.0"
44
edition = "2021"
5+
rust-version = "1.80"
56

67
description = "Pointer union types the size of a pointer by storing the tag in the alignment bits."
78
repository = "https://github.com/CAD97/pointer-utils/tree/master/crates/ptr-union"

crates/ptr-union/README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ by storing the tag in the alignment bits.
33

44
## Changelist
55

6+
### 2.3.0
7+
#### Fixed
8+
9+
- Cloning a pointer that resulted in a lower alignment no longer unsoundly
10+
assumes it has greater alignment than it does. Cloning `Union*` now checks
11+
alignment and panics if it is insufficient.
12+
13+
#### Changed
14+
15+
- Updated MSRV to 1.80.
16+
617
### 2.2.2
718
#### Fixed
819

@@ -62,8 +73,7 @@ This will ensure that the inner types are properly dropped instead of leaking.
6273

6374
## Minimum Supported Rust Version
6475

65-
We require a minimum Rust version of 1.41.0.
66-
This is for an adjustment of local trait impl checking.
76+
We require a minimum Rust version of 1.80.0.
6777

6878
Minimum version support is only guaranteed with minimal version resolution
6979
(`-Z minimal-versions`/`--minimal-versions`) due to how dependencies are handled.

crates/rc-borrow/Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "rc-borrow"
3-
version = "1.4.0"
4-
edition = "2018"
3+
version = "1.5.0"
4+
edition = "2021"
5+
rust-version = "1.80"
56

67
description = "Borrowed forms of Rc and Arc."
78
repository = "https://github.com/CAD97/pointer-utils/tree/master/crates/rc-borrow"

crates/rc-borrow/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ We provide support for both `Arc` and `Rc`.
3939

4040
## Minimum Supported Rust Version
4141

42-
We require a minimum Rust version of 1.41.0.
43-
This is for an adjustment of local trait impl checking.
42+
We require a minimum Rust version of 1.80.0.
4443

4544
Minimum version support is only guaranteed with minimal version resolution
4645
(`-Z minimal-versions`/`--minimal-versions`) due to how dependencies are handled.

crates/rc-box/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "rc-box"
33
version = "1.3.0"
44
edition = "2021"
5+
rust-version = "1.80"
56

67
authors = ["Christopher Durham (cad97) <[email protected]>"]
78
description = "Known unique versions of Rc and Arc."

crates/rc-box/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ We provide support for both `Arc` and `Rc`.
3232

3333
## Minimum Supported Rust Version
3434

35-
We require a minimum Rust version of 1.41.0.
36-
This is for an adjustment of local trait impl checking.
35+
We require a minimum Rust version of 1.80.0.
3736

3837
Minimum version support is only guaranteed with minimal version resolution
3938
(`-Z minimal-versions`/`--minimal-versions`) due to how dependencies are handled.

crates/slice-dst/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "slice-dst"
33
version = "1.6.0"
44
edition = "2021"
5+
rust-version = "1.80"
56

67
description = "Slice-based custom DSTs"
78
repository = "https://github.com/CAD97/pointer-utils/tree/master/crates/slice-dst"

crates/slice-dst/README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,11 @@ in exchange for moving node payloads to the heap alongside the children array.
7575

7676
## Changelist
7777

78+
### 1.6.0
79+
#### Changed
80+
81+
- Updated MSRV to 1.80.
82+
7883
### 1.5.0
7984
#### Additions
8085

@@ -130,8 +135,7 @@ in the 1.1 line, and urge you to upgrade to 1.2 as soon as possible.
130135

131136
## Minimum Supported Rust Version
132137

133-
We require a minimum Rust version of 1.41.0.
134-
This is for an adjustment of local trait impl checking.
138+
We require a minimum Rust version of 1.80.0.
135139

136140
Minimum version support is only guaranteed with minimal version resolution
137141
(`-Z minimal-versions`/`--minimal-versions`) due to how dependencies are handled.

0 commit comments

Comments
 (0)