From 0748292b598fce988ecd72f4b618eea67a3b9cdb Mon Sep 17 00:00:00 2001 From: Iulian Gabriel Radu Date: Mon, 28 Oct 2019 11:36:05 +0200 Subject: [PATCH] Bump to version 0.2 --- Cargo.lock | 2 +- Cargo.toml | 3 ++- README.md | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3e00069..df9e62a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -22,7 +22,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "lordeckcodes" -version = "0.1.0" +version = "0.2.0" dependencies = [ "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index f340c79..5ddd565 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,13 +4,14 @@ description = "Legends of Runeterra deck encoder/decoder" homepage = "https://github.com/iulianR/lordeckcodes-rs" repository = "https://github.com/iulianR/lordeckcodes-rs" documentation = "https://docs.rs/lordeckcodes" -version = "0.1.0" +version = "0.2.0" authors = ["Iulian Gabriel Radu "] edition = "2018" license = "MIT" readme = "README.md" keywords = ["encoder", "decoder", "riot-games", "runeterra", "legends-of-runeterra"] categories = ["encoding"] +publish = false [features] default = ["serde"] diff --git a/README.md b/README.md index 5a0cfdf..887adaa 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To use `lordeckcodes`, add this to your `Cargo.toml`: ```toml [dependencies] -lordeckcodes = "0.1" +lordeckcodes = "0.2" ``` ## Serde support @@ -29,7 +29,7 @@ Serde support is optional and disabled by default. To enable use the feature `se ```toml [dependencies] -lordeckcodes = { version = "0.1", features = ["serde"] } +lordeckcodes = { version = "0.2", features = ["serde"] } ``` ## Examples