Skip to content
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

Add crates.io and docs.rs links to README and prepare v0.1.1 release #8

Merged
merged 2 commits into from
Sep 26, 2024
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
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ It is a port of the Haskell library [Uniplate](https://hackage.haskell.org/packa

Quick links:

* [Installing Uniplate from crates.io](TODO)
* [Documentation (docs.rs)](TODO)
* [Installing Uniplate from crates.io](https://crates.io/crates/uniplate/0.1.1)
* [Documentation (docs.rs)](https://docs.rs/crate/uniplate/0.1.1)
* [Github Repository](https://github.com/conjure-cp/uniplate)

## A simple example
Expand Down
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
1. Run `cargo update`
2. Update `Cargo.toml` version fields to the new version.
3. Update the version of `uniplate-derive` that `uniplate` depends on to the new version.
4. Increment version numbers in the docs.rs and crates.io links at the top of README.md
4. Check documentation build.
5. Create a git tag with the version number.
7. Run `cargo publish --dry-run` and `cargo publish` for `uniplate-derive`.
Expand Down
2 changes: 1 addition & 1 deletion uniplate-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uniplate-derive"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Helper crate for uniplate"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions uniplate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uniplate"
version = "0.1.0"
version = "0.1.1"
authors = ["Niklas Dewally <niklas@dewally.com>","Ozgur Akgun"]
edition = "2021"
description = "Simple, boilerplate-free operations on tree-shaped data types"
Expand All @@ -17,7 +17,7 @@ im = {version = "15.1.0", features = ["proptest"]}
proptest = "1.5.0"
proptest-derive = "0.5.0"
thiserror = "1.0.61"
uniplate-derive = {version = "0.1.0", path = "../uniplate-derive"}
uniplate-derive = {version = "0.1.1", path = "../uniplate-derive"}

[dev-dependencies]
trybuild = "1.0.91"
Expand Down
Loading