Skip to content
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: 1 addition & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ pull_request_rules:
actions:
backport:
branches:
- stable/2.3
- stable/2.4
28 changes: 14 additions & 14 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "2.4.0-rc1"
version = "2.5.0-dev"
edition = "2024"
rust-version = "1.85" # Keep in sync with README.md, rust-toolchain.toml, and tools/install_rust_msrv.sh
license = "Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/bindgen/include/qiskit/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
#define QISKIT_RELEASE_LEVEL_FINAL 0xF

#define QISKIT_VERSION_MAJOR 2
#define QISKIT_VERSION_MINOR 4
#define QISKIT_VERSION_MINOR 5
#define QISKIT_VERSION_PATCH 0
#define QISKIT_RELEASE_LEVEL QISKIT_RELEASE_LEVEL_RC
#define QISKIT_RELEASE_LEVEL QISKIT_RELEASE_LEVEL_DEV
// For the final release, set the below to 0.
#define QISKIT_RELEASE_SERIAL 1
#define QISKIT_RELEASE_SERIAL 0

#define QISKIT_VERSION "2.4.0-rc1"
#define QISKIT_VERSION "2.5.0-dev"

#define QISKIT_GET_VERSION_HEX(major, minor, patch, level, serial) \
(((major) & 0xff) << 24 | ((minor) & 0xff) << 16 | ((patch) & 0xff) << 8 | \
Expand Down
2 changes: 1 addition & 1 deletion docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Qiskit |version| release notes
though, which is typically `rc1` tags.

.. release-notes::
:earliest-version: 2.3.0rc1
:earliest-version: 2.4.0rc1
2 changes: 1 addition & 1 deletion qiskit/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.0rc1
2.5.0.dev0