From 50a102b34e33aa123c6f0105cf6a576d8bb81e65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvador=20de=20la=20Puente=20Gonz=C3=A1lez?= Date: Mon, 25 May 2020 18:43:21 +0200 Subject: [PATCH] Bump version to 1.1.0 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 882072b..eea08fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ edition = "2018" name = "qasmsim" description = "A QASM interpreter and quantum simulator in Rust" -version = "1.0.0" # remember to update html_root_url +version = "1.1.0" # remember to update html_root_url repository = "https://github.com/delapuente/qasmsim.git" license = "MIT" authors = ["Salvador de la Puente González "] diff --git a/src/lib.rs b/src/lib.rs index 3c6c927..5e3e358 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ #![warn(missing_docs)] -#![doc(html_root_url = "https://docs.rs/qasmsim/1.0.0")] +#![doc(html_root_url = "https://docs.rs/qasmsim/1.1.0")] //! The `qasmsim` library includes a //! [OPENQASM 2.0](https://github.com/Qiskit/openqasm/blob/master/spec-human/) //! parser and interpreter, along with a statevector simulator. Compiled with