Skip to content

prepare for publish #93

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
uses: actions/checkout@v2

- name: Install toolchain
uses: dtolnay/rust-toolchain@1.84
uses: dtolnay/rust-toolchain@1.80
with:
components: clippy

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions crates/erasable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ There are two main useful reasons to type erase pointers in Rust:

## Changelist

### 1.3.0
#### Changed
- Updated MSRV to 1.80

### 1.2.0
#### Added
- `impl ErasablePtr for Thin<P>`: the obvious impl; `Thin` is erased internally
Expand Down Expand Up @@ -82,8 +86,7 @@ I'd love to remove this hack if it turns out unnecessary after all

## Minimum Supported Rust Version

We require a minimum Rust version of 1.41.0.
This is for an adjustment of local trait impl checking.
We require a minimum Rust version of 1.80.0.

Minimum version support is only guaranteed with minimal version resolution
(`-Z minimal-versions`/`--minimal-versions`) due to how dependencies are handled.
Expand Down
1 change: 1 addition & 0 deletions crates/ptr-union/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "ptr-union"
version = "2.3.0"
edition = "2021"
rust-version = "1.80"

description = "Pointer union types the size of a pointer by storing the tag in the alignment bits."
repository = "https://github.com/CAD97/pointer-utils/tree/master/crates/ptr-union"
Expand Down
14 changes: 12 additions & 2 deletions crates/ptr-union/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ by storing the tag in the alignment bits.

## Changelist

### 2.3.0
#### Fixed

- Cloning a pointer that resulted in a lower alignment no longer unsoundly
assumes it has greater alignment than it does. Cloning `Union*` now checks
alignment and panics if it is insufficient.

#### Changed

- Updated MSRV to 1.80.

### 2.2.2
#### Fixed

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

## Minimum Supported Rust Version

We require a minimum Rust version of 1.41.0.
This is for an adjustment of local trait impl checking.
We require a minimum Rust version of 1.80.0.

Minimum version support is only guaranteed with minimal version resolution
(`-Z minimal-versions`/`--minimal-versions`) due to how dependencies are handled.
Expand Down
5 changes: 3 additions & 2 deletions crates/rc-borrow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "rc-borrow"
version = "1.4.0"
edition = "2018"
version = "1.5.0"
edition = "2021"
rust-version = "1.80"

description = "Borrowed forms of Rc and Arc."
repository = "https://github.com/CAD97/pointer-utils/tree/master/crates/rc-borrow"
Expand Down
3 changes: 1 addition & 2 deletions crates/rc-borrow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ We provide support for both `Arc` and `Rc`.

## Minimum Supported Rust Version

We require a minimum Rust version of 1.41.0.
This is for an adjustment of local trait impl checking.
We require a minimum Rust version of 1.80.0.

Minimum version support is only guaranteed with minimal version resolution
(`-Z minimal-versions`/`--minimal-versions`) due to how dependencies are handled.
Expand Down
1 change: 1 addition & 0 deletions crates/rc-box/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "rc-box"
version = "1.3.0"
edition = "2021"
rust-version = "1.80"

authors = ["Christopher Durham (cad97) <[email protected]>"]
description = "Known unique versions of Rc and Arc."
Expand Down
3 changes: 1 addition & 2 deletions crates/rc-box/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ We provide support for both `Arc` and `Rc`.

## Minimum Supported Rust Version

We require a minimum Rust version of 1.41.0.
This is for an adjustment of local trait impl checking.
We require a minimum Rust version of 1.80.0.

Minimum version support is only guaranteed with minimal version resolution
(`-Z minimal-versions`/`--minimal-versions`) due to how dependencies are handled.
Expand Down
1 change: 1 addition & 0 deletions crates/slice-dst/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "slice-dst"
version = "1.6.0"
edition = "2021"
rust-version = "1.80"

description = "Slice-based custom DSTs"
repository = "https://github.com/CAD97/pointer-utils/tree/master/crates/slice-dst"
Expand Down
8 changes: 6 additions & 2 deletions crates/slice-dst/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ in exchange for moving node payloads to the heap alongside the children array.

## Changelist

### 1.6.0
#### Changed

- Updated MSRV to 1.80.

### 1.5.0
#### Additions

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

## Minimum Supported Rust Version

We require a minimum Rust version of 1.41.0.
This is for an adjustment of local trait impl checking.
We require a minimum Rust version of 1.80.0.

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