Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
swsnr committed Apr 15, 2023
1 parent 01c518f commit d33daa9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Use `cargo release` to create a new release.

## [Unreleased]

## [2.0.0] – 2023-04-15

### Added
- mdcat now fills paragraph text to the column limit, i.e. fills up short lines and wraps long lines (see [GH-4]).
- mdcat now allows to control color and style via a new `theme` field in `pulldown_cmark_mdcat::Settings` of type `pulldown_cmark_mdcat::Theme` (see [GH-48]).
Expand Down Expand Up @@ -666,7 +668,8 @@ Use `cargo release` to create a new release.
- Support ordered and unordered lists, with nest.
- Show links, with references grouped by section.

[Unreleased]: https://github.com/swsnr/mdcat/compare/mdcat-1.1.1...HEAD
[Unreleased]: https://github.com/swsnr/mdcat/compare/mdcat-2.0.0...HEAD
[2.0.0]: https://github.com/swsnr/mdcat/compare/mdcat-1.1.1...mdcat-2.0.0
[1.1.1]: https://github.com/swsnr/mdcat/compare/mdcat-1.1.0...mdcat-1.1.1
[1.1.0]: https://github.com/swsnr/mdcat/compare/mdcat-1.0.0...mdcat-1.1.0
[1.0.0]: https://github.com/swsnr/mdcat/compare/mdcat-0.30.3...mdcat-1.0.0
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ system_proxy = { version = "0.3.2", default-features = false }

# Our own crates; pinned to an exact version because we release all of this repo
# in a single version. cargo release takes care of updating these.
mdcat-http-reqwest = { version = "=1.1.1", path = "mdcat-http-reqwest", default-features = false}
pulldown-cmark-mdcat = { version = "=1.1.1", path = "pulldown-cmark-mdcat", default-features = false }
mdcat-http-reqwest = { version = "=2.0.0", path = "mdcat-http-reqwest", default-features = false}
pulldown-cmark-mdcat = { version = "=2.0.0", path = "pulldown-cmark-mdcat", default-features = false }

[dev-dependencies]
pretty_assertions = "1.3.0"
Expand Down Expand Up @@ -68,7 +68,7 @@ members = [
[workspace.package]
homepage = "https://github.com/swsnr/mdcat"
repository = "https://github.com/swsnr/mdcat"
version = "1.1.1"
version = "2.0.0"
categories = ["command-line-utilities", "text-processing"]
license = "MPL-2.0 AND Apache-2.0"
authors = ["Sebastian Wiesner <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion mdcat-http-reqwest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ tracing = { version = "0.1.37", default-features = false, features = ["attribute

# Our own crates; pinned to an exact version because we release all of this repo
# in a single version. cargo release takes care of updating these.
pulldown-cmark-mdcat = { version = "=1.1.1", path = "../pulldown-cmark-mdcat", default-features = false}
pulldown-cmark-mdcat = { version = "=2.0.0", path = "../pulldown-cmark-mdcat", default-features = false}

[dev-dependencies]
hyper = { version="0.14.26", default-features = false, features = ["server", "http1", "runtime"] }
Expand Down
4 changes: 2 additions & 2 deletions mdcat.1.adoc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
= mdcat(1)
Sebastian Wiesner <sebastian@swsnr.de>
:doctype: manpage
:revnumber: 1.1.1
:revdate: 2023-03-18
:revnumber: 2.0.0
:revdate: 2023-04-15
:mansource: mdcat {revnumber}
:manmanual: mdcat

Expand Down

0 comments on commit d33daa9

Please sign in to comment.