Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incrementing the version number to v0.27.0-dev #3044

Merged
merged 8 commits into from
Sep 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/development/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Release notes

This page contains the release notes for PennyLane.

.. mdinclude:: ../releases/changelog-dev.md

.. mdinclude:: ../releases/changelog-0.26.0.md

.. mdinclude:: ../releases/changelog-0.25.1.md
Expand Down
19 changes: 19 additions & 0 deletions doc/releases/changelog-dev.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
:orphan:

# Release 0.27.0-dev (development release)

<h3>New features since last release</h3>

<h3>Improvements</h3>

<h3>Breaking changes</h3>

<h3>Deprecations</h3>

<h3>Documentation</h3>

<h3>Bug fixes</h3>

<h3>Contributors</h3>

This release contains contributions from (in alphabetical order):
2 changes: 1 addition & 1 deletion pennylane/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.26.0"
__version__ = "0.27.0-dev"
1 change: 1 addition & 0 deletions tests/optimize/test_optimize_shot_adapative.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ def qnode(x):
qml.RX(x, wires=0)
return qml.expval(qml.PauliZ(0))

@flaky(max_runs=3)
@pytest.mark.parametrize("cost_fn", [qnode, expval_cost])
def test_single_argument_step(self, cost_fn, mocker, monkeypatch):
"""Test that a simple QNode with a single argument correctly performs an optimization step,
Expand Down