Skip to content

Commit

Permalink
Update dependencies (#421)
Browse files Browse the repository at this point in the history
* Updated version number to prepare for next release

* Trying to update

* Fixing build

* Adding compatibility to pipeline

* Fixed cargo.toml

* Trying to fix pipeline

* Unstaging issues

* Reverting Implemented in 1_2

* Fixed typo

* Updated copyright year

* Added unittests for errors in devices

* Updating stack

* Updated version
  • Loading branch information
kbarkhqs authored Dec 9, 2022
1 parent 416ad9c commit 0f02ec5
Show file tree
Hide file tree
Showing 108 changed files with 750 additions and 700 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

This changelog track changes to the qoqo project starting at version v0.5.0

## 1.2.0-alpha.2

* Added CircuitDag documentation
* Added PhaseShiftedControlledPhase to qoqo
* Updated dependencies

## 1.2.0-alpha.1

* Preparing for 1.2.0 and updated nalgebra to 0.31
Expand Down
98 changes: 49 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions compatibility_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compatibility_test"
version = "1.2.0-alpha.1"
version = "1.2.0-alpha.2"
authors = ["HQS Quantum Simulations <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -22,7 +22,7 @@ publish = false
test_roqoqo_1_0 = {package = "roqoqo", version="=1.0.0"}
test_roqoqo_derive_1_0 = {package = "roqoqo-derive", version="=1.0.0"}
qoqo_calculator = { version="1.1" }
roqoqo = {version="1.2.0-alpha.1", path="../roqoqo", features=["serialize", "overrotate"]}
roqoqo = {version="1.2.0-alpha.2", path="../roqoqo", features=["serialize", "overrotate"]}
bincode = {version="1.3"}

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion compatibility_test/tests/integration/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 HQS Quantum Simulations GmbH. All Rights Reserved.
// Copyright © 2021-2022 HQS Quantum Simulations GmbH. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the License at
Expand Down
2 changes: 1 addition & 1 deletion qoqo-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qoqo-macros"
version = "1.2.0-alpha.1"
version = "1.2.0-alpha.2"
authors = ["HQS Quantum Simulations <[email protected]>"]
license = "Apache-2.0"
readme = "../README.md"
Expand Down
2 changes: 1 addition & 1 deletion qoqo-macros/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2021 HQS Quantum Simulations GmbH
Copyright 2021-2022 HQS Quantum Simulations GmbH

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion qoqo-macros/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 HQS Quantum Simulations GmbH. All Rights Reserved.
// Copyright © 2021-2022 HQS Quantum Simulations GmbH. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the License at
Expand Down
2 changes: 1 addition & 1 deletion qoqo-macros/src/operate.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright © 2021 HQS Quantum Simulations GmbH. All Rights Reserved.
// Copyright © 2021-2022 HQS Quantum Simulations GmbH. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the License at
Expand Down
6 changes: 3 additions & 3 deletions qoqo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qoqo"
version = "1.2.0-alpha.1"
version = "1.2.0-alpha.2"
authors = ["HQS Quantum Simulations <[email protected]>"]
license = "Apache-2.0"
homepage = "https://github.com/HQSquantumsimulations/qoqo"
Expand Down Expand Up @@ -32,8 +32,8 @@ num-complex = "0.4"
thiserror = "1.0"
qoqo_calculator = { version="1.1" }
qoqo_calculator_pyo3 = {version="1.1", default-features=false}
qoqo-macros = {version="1.2.0-alpha.1", path="../qoqo-macros"}
roqoqo = {version="1.2.0-alpha.1", path="../roqoqo", features=["serialize", "overrotate"]}
qoqo-macros = {version="1.2.0-alpha.2", path="../qoqo-macros"}
roqoqo = {version="1.2.0-alpha.2", path="../roqoqo", features=["serialize", "overrotate"]}
numpy = "0.17"
bincode = "1.3"
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion qoqo/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2021 HQS Quantum Simulations GmbH
Copyright 2021-2022 HQS Quantum Simulations GmbH

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Loading

0 comments on commit 0f02ec5

Please sign in to comment.