From 000630e6d8e9bcabd96b85f2f08b8321bd16e60c Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Fri, 2 Aug 2024 14:02:03 -0400 Subject: [PATCH] Fix version in docs --- README.md | 2 +- cursive-syntect/Cargo.toml | 2 +- cursive-syntect/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ea07c51f..08797c7d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ It is designed to be safe and easy to use: ```toml [dependencies] -cursive = "0.20" +cursive = "0.21" ``` Or to use the latest git version: diff --git a/cursive-syntect/Cargo.toml b/cursive-syntect/Cargo.toml index fa65c98f..c0ab7e42 100644 --- a/cursive-syntect/Cargo.toml +++ b/cursive-syntect/Cargo.toml @@ -23,7 +23,7 @@ version = "5.0.0" features = ["parsing"] [dev-dependencies] -cursive = { path = "../cursive", version = "0.20.0" } +cursive = { path = "../cursive", version = "0.21.0" } [dev-dependencies.syntect] version = "5.0.0" diff --git a/cursive-syntect/README.md b/cursive-syntect/README.md index af6c4e11..898fb9bb 100644 --- a/cursive-syntect/README.md +++ b/cursive-syntect/README.md @@ -12,5 +12,5 @@ See the example for usage. ```toml [dependencies] -cursive-syntect = "0.1" +cursive-syntect = "0.2" ```