From 3ab0f4d2617e7893201393c223f205a42a69a24f Mon Sep 17 00:00:00 2001 From: MucTepDaH16 Date: Tue, 2 Aug 2022 22:19:25 +0300 Subject: [PATCH] v0.4.2 --- .github/workflows/criterion.yml | 2 -- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/criterion.yml b/.github/workflows/criterion.yml index 4edc001..1156d88 100644 --- a/.github/workflows/criterion.yml +++ b/.github/workflows/criterion.yml @@ -16,5 +16,3 @@ jobs: uses: snickerbockers/submodules-init@v4 - name: Benchmark crate (performance) run: cargo bench --quiet --package qvnt --bench performance --features=cpu - - name: Benchmark crate (interpreter) - run: cargo bench --quiet --package qvnt --bench interpreter --features=cli \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index b241108..9fd035c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -429,7 +429,7 @@ dependencies = [ [[package]] name = "qvnt" -version = "0.4.1" +version = "0.4.2" dependencies = [ "criterion", "enum_dispatch", diff --git a/Cargo.toml b/Cargo.toml index 78524a4..5220c11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qvnt" -version = "0.4.1" +version = "0.4.2" description = "Advanced quantum computation simulator." keywords = ["theoretical", "quantum-computing", "quantum-simulator", "quantum", "qubits"] categories = ["concurrency", "simulation", "mathematics", "science"] diff --git a/README.md b/README.md index f9356ef..34ea0b9 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Add this lines to your *Cargo.toml* file to use __QVNT__ crate: ```toml [dependencies] -qvnt = { version = "0.4.1", features = ["cpu"] } +qvnt = { version = "0.4.2", features = ["cpu"] } ``` Quantum register and operators are controlled by bitmasks.