Skip to content

Commit

Permalink
README: new URL, copyright year, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Jan 18, 2024
1 parent 4c909b6 commit bb104e6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017–2023, Asherah Connor
Copyright (c) 2017–2024, Ashe Connor

All rights reserved.

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "comrak"
version = "0.20.0"
authors = ["Asherah Connor <[email protected]>"]
authors = ["Ashe Connor <[email protected]>"]
description = "A 100% CommonMark-compatible GitHub Flavored Markdown parser and formatter"
documentation = "https://docs.rs/comrak"
homepage = "https://github.com/kivikakk/comrak"
repository = "https://github.com/kivikakk/comrak"
homepage = "https://hrzn.ee/kivikakk/comrak"
repository = "https://hrzn.ee/kivikakk/comrak"
readme = "README.md"
keywords = ["markdown", "commonmark"]
license = "BSD-2-Clause"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ build-comrak-branch:
cp ${ROOT}/target/release/comrak ${ROOT}/benches/comrak-${COMMIT}

build-comrak-master:
git clone https://github.com/kivikakk/comrak.git --depth 1 --single-branch ${ROOT}/vendor/comrak || true
git clone https://hrzn.ee/kivikakk/comrak.git --depth 1 --single-branch ${ROOT}/vendor/comrak || true
cd ${ROOT}/vendor/comrak && \
cargo build --release && \
cp ./target/release/comrak ${ROOT}/benches/comrak-main
Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Comrak
# [Comrak](https://hrzn.ee/kivikakk/comrak)

[![Build Status](https://github.com/kivikakk/comrak/actions/workflows/rust.yml/badge.svg)](https://github.com/kivikakk/comrak/actions/workflows/rust.yml) ![Spec
Status: 671/671](https://img.shields.io/badge/specs-671%2F671-brightgreen.svg) [![Financial Contributors on Open
Expand Down Expand Up @@ -302,7 +302,10 @@ Contributions are highly encouraged; where possible I practice [Optimistic Mergi
described by Peter Hintjens. Please keep the [code of conduct](CODE_OF_CONDUCT.md) in mind when interacting with this
project.

Thank you to comrak's many contributors for PRs and issues opened\!
For now the preferred method is [pull requests on GitHub](https://github.com/kivikakk/comrak), in
order to maximise the number of eyes, but a mailing list for patches is in the works.

Thank you to Comrak's many contributors for PRs and issues opened\!

### Code Contributors

Expand Down Expand Up @@ -338,11 +341,11 @@ Support this project with your organization. Your logo will show up here with a

## Contact

Asherah Connor \<ashe kivikakk ee\>
Ashe Connor \<ashe kivikakk ee\>

## Legal

Copyright (c) 2017–2023, Asherah Connor. Licensed under the [2-Clause BSD
Copyright (c) 2017–2024, Asherah Connor. Licensed under the [2-Clause BSD
License](https://opensource.org/licenses/BSD-2-Clause).

`cmark` itself is is copyright (c) 2014, John MacFarlane.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! A 100% [CommonMark](http://commonmark.org/) and [GFM](https://github.github.com/gfm/)
//! compatible Markdown parser. Source repository is at <https://github.com/kivikakk/comrak>.
//! compatible Markdown parser. Source repository is at <https://hrzn.ee/kivikakk/comrak>.
//!
//! The design is based on [cmark-gfm](https://github.com/github/cmark-gfm), so
//! familiarity with that will help.
Expand Down

0 comments on commit bb104e6

Please sign in to comment.