summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMartin Nordholts <enselic@gmail.com>2022-02-26 17:27:34 +0100
committerMartin Nordholts <enselic@gmail.com>2022-02-27 07:39:22 +0100
commit0655ecf23d778f1455e2d79f37a805a7bcca98d2 (patch)
tree287b025053044acc04577c3d1bcdb9679ae09177 /Cargo.toml
parent671fc952bce06474c9ebe5f4f7f4e253a34508fa (diff)
Prepare for v0.20.0 releasev0.20.0
Since we have added new enum variants to the `StyleComponent` which was not previously marked `#[non_exhaustive]`, we must bump left-most non-zero version number (see [specifying-dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-cratesio)). Otherwise client code that do exhaustive matches on `StyleComponent` will stop compiling.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 99a65642..3ffac8fa 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,7 @@ homepage = "https://github.com/sharkdp/bat"
license = "MIT/Apache-2.0"
name = "bat"
repository = "https://github.com/sharkdp/bat"
-version = "0.19.0"
+version = "0.20.0"
exclude = ["assets/syntaxes/*", "assets/themes/*"]
build = "build.rs"
edition = '2018'