From 6c6189f180936952a9cd8e86d62417886fc7e341 Mon Sep 17 00:00:00 2001 From: "Michael A. Plikk" Date: Thu, 12 Sep 2019 18:35:36 +0200 Subject: [PATCH] Update version to 2.1.0 --- Cargo.toml | 2 +- README.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c8e31bf..a4c14f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sgf-parser" -version = "2.0.0" +version = "2.1.0" authors = ["Michael A. Plikk "] edition = "2018" license = "MIT" diff --git a/README.md b/README.md index ab71c6c..af04535 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,12 @@ A [SGF](https://www.red-bean.com/sgf/index.html) Parser for Rust. Supports all S Using `pest` for the actual parsing part. +# Development + +Code quality is ensured by running both `cargo clippy` and `cargo fmt` on each commit. + +All code should also be unit tested. + # Example usage ```rust use sgf_parser::*;