Skip to content

Commit 89217a7

Browse files
committed
addressed ON_RELEASE chores
1 parent b085c34 commit 89217a7

File tree

5 files changed

+3
-15
lines changed

5 files changed

+3
-15
lines changed

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<!-- ON_RELEASE: Add changelog entry for new version and remove this comment -->
2-
31
# Major Version 1
42

53
## v1.0.0

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[package]
88
name = "pair"
9-
version = "0.1.0" # ON_RELEASE: Bump version. Also, do all "ON_RELEASE" tasks
9+
version = "1.0.0"
1010
authors = ["Isaac Chen"]
1111
edition = "2024"
1212
rust-version = "1.85.0"

README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,6 @@ You define how to construct a dependent type from a reference to an owning type,
1212
and [`Pair`] will carefully bundle them together in a safe and freely movable
1313
self-referential struct.
1414

15-
<!-- ON_RELEASE: for 1.0, permanantly remove this section (and this comment) -->
16-
# DO NOT USE THIS LIBRARY
17-
18-
As of right now, I have absolutely no idea whether or not this API is sound. You
19-
should *absolutely not* use this library for anything that matters at this point
20-
in time.
21-
2215
# Example Usage
2316

2417
A typical use case might look something like this:
@@ -155,5 +148,4 @@ dual licensed as above, without any additional terms or conditions.
155148
docs.rs documentation links for rendered markdown (ex, on GitHub)
156149
These are overridden when include_str!(..)'d in lib.rs
157150
-->
158-
<!-- ON_RELEASE: the below link(s) should be updated, and this comment removed -->
159-
[`Pair`]: https://docs.rs/pair/__CRATE_VERSION_HERE__/pair/struct.Pair.html
151+
[`Pair`]: https://docs.rs/pair/1.0.0/pair/struct.Pair.html

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// These markdown links are used to override the docs.rs web links present at
22
// the bottom of README.md. These two lists must be kept in sync, or the links
33
// included here will be hard-coded links to docs.rs, not relative doc links.
4-
// ON_RELEASE: the below link(s) should be verified to match the readme, and
5-
// this "on release" comment removed (the above one should stay).
64
//! [`Pair`]: Pair
75
#![cfg_attr(any(doc, test), doc = include_str!("../README.md"))]
86
#![no_std]

0 commit comments

Comments
 (0)