From a981472eda6924da3cb2bb7c471f7f3e478eaae3 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 10 Jan 2024 00:24:57 +0100 Subject: [PATCH] Bump version to 0.14.1 --- Cargo.lock | 4 ++-- README.md | 23 ++++++++++++++++++++++- lychee-bin/Cargo.toml | 4 ++-- lychee-lib/Cargo.toml | 2 +- 4 files changed, 27 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1e18100..99d0bcb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2343,7 +2343,7 @@ dependencies = [ [[package]] name = "lychee" -version = "0.14.0" +version = "0.14.1" dependencies = [ "anyhow", "assert-json-diff", @@ -2388,7 +2388,7 @@ dependencies = [ [[package]] name = "lychee-lib" -version = "0.14.0" +version = "0.14.1" dependencies = [ "async-stream", "cached", diff --git a/README.md b/README.md index 0e74742..c692da8 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,30 @@ Available as a command-line utility, a library and a [GitHub Action](https://git ## Table of Contents +- [Table of Contents](#table-of-contents) - [Installation](#installation) + - [Arch Linux](#arch-linux) + - [macOS](#macos) + - [Docker](#docker) + - [NixOS](#nixos) + - [FreeBSD](#freebsd) + - [Scoop](#scoop) + - [Termux](#termux) + - [Pre-built binaries](#pre-built-binaries) + - [Cargo](#cargo) + - [Build dependencies](#build-dependencies) + - [Compile and install lychee](#compile-and-install-lychee) + - [Feature flags](#feature-flags) - [Features](#features) - [Commandline usage](#commandline-usage) + - [Docker Usage](#docker-usage) + - [Linux/macOS shell command](#linuxmacos-shell-command) + - [Windows PowerShell command](#windows-powershell-command) + - [GitHub Token](#github-token) + - [Commandline Parameters](#commandline-parameters) + - [Exit codes](#exit-codes) + - [Ignoring links](#ignoring-links) + - [Caching](#caching) - [Library usage](#library-usage) - [GitHub Action Usage](#github-action-usage) - [Contributing to lychee](#contributing-to-lychee) @@ -336,7 +357,7 @@ Options: -u, --user-agent User agent - [default: lychee/0.14.0] + [default: lychee/0.14.1] -i, --insecure Proceed for server connections considered insecure (invalid TLS) diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 1514b4e..7f3c75e 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -14,13 +14,13 @@ keywords = [ ] license = "Apache-2.0 OR MIT" repository = "https://github.com/lycheeverse/lychee" -version = "0.14.0" +version = "0.14.1" readme = "../README.md" [dependencies] # NOTE: We need to specify the version of lychee-lib here because crates.io # requires all dependencies to have a version number. -lychee-lib = { path = "../lychee-lib", version = "0.14.0", default-features = false } +lychee-lib = { path = "../lychee-lib", version = "0.14.1", default-features = false } anyhow = "1.0.78" assert-json-diff = "2.0.2" diff --git a/lychee-lib/Cargo.toml b/lychee-lib/Cargo.toml index 8303a7d..52765c6 100644 --- a/lychee-lib/Cargo.toml +++ b/lychee-lib/Cargo.toml @@ -14,7 +14,7 @@ keywords = [ ] license = "Apache-2.0 OR MIT" repository = "https://github.com/lycheeverse/lychee" -version = "0.14.0" +version = "0.14.1" readme = "../README.md" [dependencies]