From 3cf558e7b3b32ccc02a1bba32ffb48b111210b3a Mon Sep 17 00:00:00 2001 From: Yang Luo Date: Mon, 5 Feb 2024 00:56:14 +0800 Subject: [PATCH] feat: bump version to 1.0.0 --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a93c63d..8641041 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yaml-adapter" -version = "0.1.0" +version = "1.0.0" authors = ["closetool <4closetool3@gmail.com>"] edition = "2018" description = "a adapter which reads yaml format policy file for casbin repo" diff --git a/README.md b/README.md index cd61f45..8b3028b 100644 --- a/README.md +++ b/README.md @@ -12,14 +12,14 @@ Yaml Adapter is a [yaml](https://github.com/dtolnay/serde-yaml) adapter for [Cas Add following to `Cargo.toml` ``` -yaml-adapter = { version = "0.1.0", features = "runtime-async-std" } +yaml-adapter = { version = "1.0.0", features = "runtime-async-std" } async-std = "1.5.0" ``` for using `tokio` ``` -yaml-adapter = { version = "0.1.0", features = "runtime-tokio" } +yaml-adapter = { version = "1.0.0", features = "runtime-tokio" } tokio = "0.3.1" ```