From e26eabffc2a982747e9b6f421ddcb20be303096c Mon Sep 17 00:00:00 2001 From: Kevin Mehall Date: Wed, 2 Oct 2019 22:07:40 -0700 Subject: [PATCH] 0.5.0 --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c7b1bc7..b17c201 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vcd" -version = "0.4.0" +version = "0.5.0" authors = ["Kevin Mehall "] description = "Read and write VCD (Value Change Dump) files" license = "MIT" diff --git a/README.md b/README.md index 508a0ef..304b249 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # VCD -**[Documentation](https://docs.rs/vcd)** +**[Documentation](https://docs.rs/vcd)** | **[Changelog](https://github.com/kevinmehall/rust-vcd/releases)** [![Build Status](https://travis-ci.org/kevinmehall/rust-vcd.svg?branch=master)](https://travis-ci.org/kevinmehall/rust-vcd) diff --git a/src/lib.rs b/src/lib.rs index 4a8cf54..db51222 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,6 @@ //! This crate reads and writes [VCD (Value Change Dump)][wp] files, a common format used with //! logic analyzers, HDL simulators, and other EDA tools. +//! //! [wp]: https://en.wikipedia.org/wiki/Value_change_dump //! //! ## Example