diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 3def5c4b0b..40387e359a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -215,7 +215,7 @@ jobs:
       - name: Build wheels
         env:
           CIBW_BEFORE_ALL: "yum install -y yum-utils wget && wget -q https://developer.download.nvidia.com/compute/cuda/12.4.0/local_installers/cuda-repo-rhel7-12-4-local-12.4.0_550.54.14-1.x86_64.rpm && rpm -i cuda-repo-rhel7-12-4-local-12.4.0_550.54.14-1.x86_64.rpm && yum clean all && yum -y install nvidia-driver-latest-dkms && yum -y install cuda-toolkit-12-4 && yum -y install openblas-devel && yum clean all"
-          CIBW_BEFORE_BUILD : "pip install nvidia-cuda-runtime-cu12 nvidia-nvjitlink-cu12 nvidia-cublas-cu12 nvidia-cusolver-cu12 nvidia-cusparse-cu12 cuquantum-cu12"
+          CIBW_BEFORE_BUILD : "pip cache purge && pip install nvidia-cuda-runtime-cu12 nvidia-nvjitlink-cu12 nvidia-cublas-cu12 nvidia-cusolver-cu12 nvidia-cusparse-cu12 cuquantum-cu12"
           CIBW_SKIP: "*-manylinux_i686 pp* cp36* cp37* cp38* cp39* cp310* cp311* *musllinux*"
           CIBW_ENVIRONMENT: QISKIT_AER_PACKAGE_NAME=qiskit-aer-gpu QISKIT_AER_CUDA_MAJOR=12 CMAKE_VERBOSE_MAKEFILE=true AER_THRUST_BACKEND=CUDA CUDACXX=/usr/local/cuda/bin/nvcc AER_CUDA_ARCH="7.0 7.2 7.5 8.0 8.6 8.7 8.9 9.0" AER_PYTHON_CUDA_ROOT=/opt/_internal AER_CIBUILD=true
           CIBW_REPAIR_WHEEL_COMMAND: 'auditwheel repair --exclude libcudart.so.12 --exclude libcustatevec.so.1 --exclude libcutensornet.so.2 --exclude libcutensor.so.1 --exclude libcutensorMg.so.1 --exclude libcusolver.so.11 --exclude libcusolverMg.so.11 --exclude libcusolver.so.12 --exclude libcusolverMg.so.12 --exclude libcusparse.so.12 --exclude libcublas.so.12 --exclude libcublasLt.so.12 --exclude libnvJitLink.so.12 -w {dest_dir} {wheel}'
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 214046b752..941591e9cc 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -147,7 +147,7 @@ jobs:
       - name: Build wheels
         env:
           CIBW_BEFORE_ALL: "yum install -y yum-utils wget && wget -q https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda-repo-rhel7-11-8-local-11.8.0_520.61.05-1.x86_64.rpm && rpm -i cuda-repo-rhel7-11-8-local-11.8.0_520.61.05-1.x86_64.rpm && yum clean all && yum -y install cuda && yum -y install openblas-devel && yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel7/x86_64/cuda-rhel7.repo && yum clean all"
-          CIBW_BEFORE_BUILD : "pip install nvidia-cuda-runtime-cu11 nvidia-cublas-cu11 nvidia-cusolver-cu11 nvidia-cusparse-cu11 cuquantum-cu11"
+          CIBW_BEFORE_BUILD : "pip cache purge && pip install nvidia-cuda-runtime-cu11 nvidia-cublas-cu11 nvidia-cusolver-cu11 nvidia-cusparse-cu11 cuquantum-cu11"
           CIBW_SKIP: "*-manylinux_i686 pp* cp36* cp37* *musllinux*"
           CIBW_ENVIRONMENT: QISKIT_AER_PACKAGE_NAME=qiskit-aer-gpu-cu11 QISKIT_AER_CUDA_MAJOR=11 CMAKE_VERBOSE_MAKEFILE=true AER_THRUST_BACKEND=CUDA CUDACXX=/usr/local/cuda/bin/nvcc AER_CUDA_ARCH="7.0 7.2 7.5 8.0 8.6 8.7" AER_PYTHON_CUDA_ROOT=/opt/_internal AER_CIBUILD=true
           CIBW_REPAIR_WHEEL_COMMAND: 'auditwheel repair --exclude libcudart.so.11.0 --exclude libcustatevec.so.1 --exclude libcutensornet.so.2 --exclude libcutensor.so.1 --exclude libcutensorMg.so.1 --exclude libcusolver.so.11 --exclude libcusolverMg.so.11 --exclude libcusparse.so.11 --exclude libcublas.so.11 --exclude libcublasLt.so.11 -w {dest_dir} {wheel}'
@@ -190,7 +190,7 @@ jobs:
       - name: Build wheels
         env:
           CIBW_BEFORE_ALL: "yum install -y yum-utils wget && wget -q https://developer.download.nvidia.com/compute/cuda/12.4.0/local_installers/cuda-repo-rhel7-12-4-local-12.4.0_550.54.14-1.x86_64.rpm && rpm -i cuda-repo-rhel7-12-4-local-12.4.0_550.54.14-1.x86_64.rpm && yum clean all && yum -y install nvidia-driver-latest-dkms && yum -y install cuda-toolkit-12-4 && yum -y install openblas-devel && yum clean all"
-          CIBW_BEFORE_BUILD : "pip install nvidia-cuda-runtime-cu12 nvidia-nvjitlink-cu12 nvidia-cublas-cu12 nvidia-cusolver-cu12 nvidia-cusparse-cu12 cuquantum-cu12"
+          CIBW_BEFORE_BUILD : "pip cache purge && pip install nvidia-cuda-runtime-cu12 nvidia-nvjitlink-cu12 nvidia-cublas-cu12 nvidia-cusolver-cu12 nvidia-cusparse-cu12 cuquantum-cu12"
           CIBW_SKIP: "*-manylinux_i686 pp* cp36* cp37* *musllinux*"
           CIBW_ENVIRONMENT: QISKIT_AER_PACKAGE_NAME=qiskit-aer-gpu QISKIT_AER_CUDA_MAJOR=12 CMAKE_VERBOSE_MAKEFILE=true AER_THRUST_BACKEND=CUDA CUDACXX=/usr/local/cuda/bin/nvcc AER_CUDA_ARCH="7.0 7.2 7.5 8.0 8.6 8.7 9.0" AER_PYTHON_CUDA_ROOT=/opt/_internal AER_CIBUILD=true
           CIBW_REPAIR_WHEEL_COMMAND: 'auditwheel repair --exclude libcudart.so.12 --exclude libcustatevec.so.1 --exclude libcutensornet.so.2 --exclude libcutensor.so.1 --exclude libcutensorMg.so.1 --exclude libcusolver.so.11 --exclude libcusolverMg.so.11 --exclude libcusolver.so.12 --exclude libcusolverMg.so.12 --exclude libcusparse.so.12 --exclude libcublas.so.12 --exclude libcublasLt.so.12 --exclude libnvJitLink.so.12 -w {dest_dir} {wheel}'
diff --git a/contrib/standalone/qasm_simulator.cpp b/contrib/standalone/qasm_simulator.cpp
index 708c8128ac..0067374b8c 100644
--- a/contrib/standalone/qasm_simulator.cpp
+++ b/contrib/standalone/qasm_simulator.cpp
@@ -92,6 +92,14 @@ int main(int argc, char **argv) {
   json_t config;
   int myrank = 0;
 
+  std::cerr << "The standalone simulator is deprecated as of Qiskit 0.14"
+            << std::endl;
+  std::cerr << "and will be removed no sooner than 3 months from that release."
+            << std::endl;
+  std::cerr << "Please run the simulator from Python using AerSimulator.run()"
+            << std::endl;
+  std::cerr << "with qiskit.circuit" << std::endl;
+
 #ifdef AER_MPI
   int prov;
   int nprocs = 1;
diff --git a/docs/conf.py b/docs/conf.py
index a38e105fc5..a8f10072b4 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -45,7 +45,7 @@
 # The short X.Y version
 version = '0.14.0'
 # The full version, including alpha/beta/rc tags
-release = '0.14.0'
+release = '0.14.0.1'
 
 templates_path = ['_templates']
 
diff --git a/qiskit_aer/VERSION.txt b/qiskit_aer/VERSION.txt
index a803cc227f..e54d09d4ee 100644
--- a/qiskit_aer/VERSION.txt
+++ b/qiskit_aer/VERSION.txt
@@ -1 +1 @@
-0.14.0
+0.14.0.1
diff --git a/qiskit_aer/backends/aerbackend.py b/qiskit_aer/backends/aerbackend.py
index 17b50651fb..bc95a45de6 100644
--- a/qiskit_aer/backends/aerbackend.py
+++ b/qiskit_aer/backends/aerbackend.py
@@ -146,7 +146,7 @@ def _convert_binds(self, circuits, parameter_binds, idx_maps=None):
 
     # pylint: disable=arguments-differ
     def run(self, circuits, validate=False, parameter_binds=None, **run_options):
-        """Run a qobj on the backend.
+        """Run circuits on the backend.
 
         Args:
             circuits (QuantumCircuit or list): The QuantumCircuit (or list
@@ -187,7 +187,7 @@ def run(self, circuits, validate=False, parameter_binds=None, **run_options):
 
         if isinstance(circuits, (QasmQobj, PulseQobj)):
             warnings.warn(
-                "Using a qobj for run() is deprecated as of qiskit-aer 0.9.0"
+                "Using a qobj for run() is deprecated as of qiskit-aer 0.14"
                 " and will be removed no sooner than 3 months from that release"
                 " date. Transpiled circuits should now be passed directly using"
                 " `backend.run(circuits, **run_options).",
diff --git a/qiskit_aer/jobs/aerjob.py b/qiskit_aer/jobs/aerjob.py
index c457a60e67..5c5b8243fe 100644
--- a/qiskit_aer/jobs/aerjob.py
+++ b/qiskit_aer/jobs/aerjob.py
@@ -155,8 +155,8 @@ def qobj(self):
             Qobj: the Qobj submitted for this job.
         """
         warnings.warn(
-            "`AerJob.qobj() is deprecated as of qiskit-aer 0.12.0`. "
-            "Using a qobj for `backend.run()` is deprecated as of qiskit-aer 0.9.0"
+            "`AerJob.qobj() is deprecated as of qiskit-aer 0.14`. "
+            "Using a qobj for `backend.run()` is deprecated as of qiskit-aer 0.14"
             " and will be removed no sooner than 3 months from that release"
             " date. Once it is removed, this `qobj()` returns always `None`.",
             DeprecationWarning,
diff --git a/releasenotes/notes/add-py312-795ffe7d68f41c73.yaml b/releasenotes/notes/0.14/add-py312-795ffe7d68f41c73.yaml
similarity index 100%
rename from releasenotes/notes/add-py312-795ffe7d68f41c73.yaml
rename to releasenotes/notes/0.14/add-py312-795ffe7d68f41c73.yaml
diff --git a/releasenotes/notes/add_bit_not_for_bool-2aa62305e62a4f34.yaml b/releasenotes/notes/0.14/add_bit_not_for_bool-2aa62305e62a4f34.yaml
similarity index 100%
rename from releasenotes/notes/add_bit_not_for_bool-2aa62305e62a4f34.yaml
rename to releasenotes/notes/0.14/add_bit_not_for_bool-2aa62305e62a4f34.yaml
diff --git a/releasenotes/notes/add_gpu_build_test-2a95842b524c880b.yaml b/releasenotes/notes/0.14/add_gpu_build_test-2a95842b524c880b.yaml
similarity index 100%
rename from releasenotes/notes/add_gpu_build_test-2a95842b524c880b.yaml
rename to releasenotes/notes/0.14/add_gpu_build_test-2a95842b524c880b.yaml
diff --git a/releasenotes/notes/compute-svd-with-lapack-3ee992d371d653d1.yaml b/releasenotes/notes/0.14/compute-svd-with-lapack-3ee992d371d653d1.yaml
similarity index 100%
rename from releasenotes/notes/compute-svd-with-lapack-3ee992d371d653d1.yaml
rename to releasenotes/notes/0.14/compute-svd-with-lapack-3ee992d371d653d1.yaml
diff --git a/releasenotes/notes/fix_aer_provider_backend-fef040819407bcca.yaml b/releasenotes/notes/0.14/fix_aer_provider_backend-fef040819407bcca.yaml
similarity index 100%
rename from releasenotes/notes/fix_aer_provider_backend-fef040819407bcca.yaml
rename to releasenotes/notes/0.14/fix_aer_provider_backend-fef040819407bcca.yaml
diff --git a/releasenotes/notes/fix_aerbackend-7e9a74f8219315dc.yaml b/releasenotes/notes/0.14/fix_aerbackend-7e9a74f8219315dc.yaml
similarity index 100%
rename from releasenotes/notes/fix_aerbackend-7e9a74f8219315dc.yaml
rename to releasenotes/notes/0.14/fix_aerbackend-7e9a74f8219315dc.yaml
diff --git a/releasenotes/notes/fix_automethod_stabilizer-90963b34bd5b4439.yaml b/releasenotes/notes/0.14/fix_automethod_stabilizer-90963b34bd5b4439.yaml
similarity index 100%
rename from releasenotes/notes/fix_automethod_stabilizer-90963b34bd5b4439.yaml
rename to releasenotes/notes/0.14/fix_automethod_stabilizer-90963b34bd5b4439.yaml
diff --git a/releasenotes/notes/fix_basis_gates-5edf9708e3eec097.yaml b/releasenotes/notes/0.14/fix_basis_gates-5edf9708e3eec097.yaml
similarity index 100%
rename from releasenotes/notes/fix_basis_gates-5edf9708e3eec097.yaml
rename to releasenotes/notes/0.14/fix_basis_gates-5edf9708e3eec097.yaml
diff --git a/releasenotes/notes/fix_batch_shots-837c066d8b993a2d.yaml b/releasenotes/notes/0.14/fix_batch_shots-837c066d8b993a2d.yaml
similarity index 100%
rename from releasenotes/notes/fix_batch_shots-837c066d8b993a2d.yaml
rename to releasenotes/notes/0.14/fix_batch_shots-837c066d8b993a2d.yaml
diff --git a/releasenotes/notes/fix_extstabilizer_thread_safety-c85e926c7ecb8dfb.yaml b/releasenotes/notes/0.14/fix_extstabilizer_thread_safety-c85e926c7ecb8dfb.yaml
similarity index 100%
rename from releasenotes/notes/fix_extstabilizer_thread_safety-c85e926c7ecb8dfb.yaml
rename to releasenotes/notes/0.14/fix_extstabilizer_thread_safety-c85e926c7ecb8dfb.yaml
diff --git a/releasenotes/notes/fix_for_daily_tests-3fa9df70fb3e53ee.yaml b/releasenotes/notes/0.14/fix_for_daily_tests-3fa9df70fb3e53ee.yaml
similarity index 100%
rename from releasenotes/notes/fix_for_daily_tests-3fa9df70fb3e53ee.yaml
rename to releasenotes/notes/0.14/fix_for_daily_tests-3fa9df70fb3e53ee.yaml
diff --git a/releasenotes/notes/fix_initialize_with_global_phase-56d529cd9c09c2fa.yaml b/releasenotes/notes/0.14/fix_initialize_with_global_phase-56d529cd9c09c2fa.yaml
similarity index 100%
rename from releasenotes/notes/fix_initialize_with_global_phase-56d529cd9c09c2fa.yaml
rename to releasenotes/notes/0.14/fix_initialize_with_global_phase-56d529cd9c09c2fa.yaml
diff --git a/releasenotes/notes/0.13/fix_mps_extstabilizer_required_memory-f4fb0aebfeeb68e2.yaml b/releasenotes/notes/0.14/fix_mps_extstabilizer_required_memory-f4fb0aebfeeb68e2.yaml
similarity index 100%
rename from releasenotes/notes/0.13/fix_mps_extstabilizer_required_memory-f4fb0aebfeeb68e2.yaml
rename to releasenotes/notes/0.14/fix_mps_extstabilizer_required_memory-f4fb0aebfeeb68e2.yaml
diff --git a/releasenotes/notes/fix_mps_required_memory_estimation-75a9bb739701046c.yaml b/releasenotes/notes/0.14/fix_mps_required_memory_estimation-75a9bb739701046c.yaml
similarity index 100%
rename from releasenotes/notes/fix_mps_required_memory_estimation-75a9bb739701046c.yaml
rename to releasenotes/notes/0.14/fix_mps_required_memory_estimation-75a9bb739701046c.yaml
diff --git a/releasenotes/notes/0.13/fix_required_memory_mb-7aeafa0fe553b85a.yaml b/releasenotes/notes/0.14/fix_required_memory_mb-7aeafa0fe553b85a.yaml
similarity index 100%
rename from releasenotes/notes/0.13/fix_required_memory_mb-7aeafa0fe553b85a.yaml
rename to releasenotes/notes/0.14/fix_required_memory_mb-7aeafa0fe553b85a.yaml
diff --git a/releasenotes/notes/fix_sample_measure_roerr-747b955aa2bf778c.yaml b/releasenotes/notes/0.14/fix_sample_measure_roerr-747b955aa2bf778c.yaml
similarity index 100%
rename from releasenotes/notes/fix_sample_measure_roerr-747b955aa2bf778c.yaml
rename to releasenotes/notes/0.14/fix_sample_measure_roerr-747b955aa2bf778c.yaml
diff --git a/releasenotes/notes/fix_simulator_init_gpu-597afb3d5241ed66.yaml b/releasenotes/notes/0.14/fix_simulator_init_gpu-597afb3d5241ed66.yaml
similarity index 100%
rename from releasenotes/notes/fix_simulator_init_gpu-597afb3d5241ed66.yaml
rename to releasenotes/notes/0.14/fix_simulator_init_gpu-597afb3d5241ed66.yaml
diff --git a/releasenotes/notes/fix_stabilizer_ry_gate-07538d8a2462c09d.yaml b/releasenotes/notes/0.14/fix_stabilizer_ry_gate-07538d8a2462c09d.yaml
similarity index 100%
rename from releasenotes/notes/fix_stabilizer_ry_gate-07538d8a2462c09d.yaml
rename to releasenotes/notes/0.14/fix_stabilizer_ry_gate-07538d8a2462c09d.yaml
diff --git a/releasenotes/notes/fix_test_for_Qiskit0.45.2-e0544949be8e77fb.yaml b/releasenotes/notes/0.14/fix_test_for_Qiskit0.45.2-e0544949be8e77fb.yaml
similarity index 100%
rename from releasenotes/notes/fix_test_for_Qiskit0.45.2-e0544949be8e77fb.yaml
rename to releasenotes/notes/0.14/fix_test_for_Qiskit0.45.2-e0544949be8e77fb.yaml
diff --git a/releasenotes/notes/fix_transpiler_lvl_for_dynamic_circuit-4ead3b497bbcc632.yaml b/releasenotes/notes/0.14/fix_transpiler_lvl_for_dynamic_circuit-4ead3b497bbcc632.yaml
similarity index 100%
rename from releasenotes/notes/fix_transpiler_lvl_for_dynamic_circuit-4ead3b497bbcc632.yaml
rename to releasenotes/notes/0.14/fix_transpiler_lvl_for_dynamic_circuit-4ead3b497bbcc632.yaml
diff --git a/releasenotes/notes/parallel-probabilistic-measurement-mps-ec00a896a0322213.yaml b/releasenotes/notes/0.14/parallel-probabilistic-measurement-mps-ec00a896a0322213.yaml
similarity index 100%
rename from releasenotes/notes/parallel-probabilistic-measurement-mps-ec00a896a0322213.yaml
rename to releasenotes/notes/0.14/parallel-probabilistic-measurement-mps-ec00a896a0322213.yaml
diff --git a/releasenotes/notes/parallelize_sampling_measure-18bda46a281e48d2.yaml b/releasenotes/notes/0.14/parallelize_sampling_measure-18bda46a281e48d2.yaml
similarity index 100%
rename from releasenotes/notes/parallelize_sampling_measure-18bda46a281e48d2.yaml
rename to releasenotes/notes/0.14/parallelize_sampling_measure-18bda46a281e48d2.yaml
diff --git a/releasenotes/notes/psutil-added-ffb2a4b5956fa03d.yaml b/releasenotes/notes/0.14/psutil-added-ffb2a4b5956fa03d.yaml
similarity index 100%
rename from releasenotes/notes/psutil-added-ffb2a4b5956fa03d.yaml
rename to releasenotes/notes/0.14/psutil-added-ffb2a4b5956fa03d.yaml
diff --git a/releasenotes/notes/0.14/release0.14-2c69aff018f985e6.yaml b/releasenotes/notes/0.14/release0.14-2c69aff018f985e6.yaml
new file mode 100644
index 0000000000..1bb34a80b2
--- /dev/null
+++ b/releasenotes/notes/0.14/release0.14-2c69aff018f985e6.yaml
@@ -0,0 +1,7 @@
+---
+prelude: >
+    Aer release 0.14 supports Qiskit 1.0 and based on BackendV2.
+    These are summary of features included in this release:
+    - Optimization of MPS method by using BLAS/LAPACK
+    - Implementing V2 primitives EstimatorV2/SamplerV2
+    - Deprecation of standalone/qobj (will be removed in the next release)
diff --git a/releasenotes/notes/remove-opflow-estimator-a3b64cfe8a4fd6b3.yaml b/releasenotes/notes/0.14/remove-opflow-estimator-a3b64cfe8a4fd6b3.yaml
similarity index 100%
rename from releasenotes/notes/remove-opflow-estimator-a3b64cfe8a4fd6b3.yaml
rename to releasenotes/notes/0.14/remove-opflow-estimator-a3b64cfe8a4fd6b3.yaml
diff --git a/releasenotes/notes/0.13/remove_pulse_simulator-f8de2f6d380f446a.yaml b/releasenotes/notes/0.14/remove_pulse_simulator-f8de2f6d380f446a.yaml
similarity index 100%
rename from releasenotes/notes/0.13/remove_pulse_simulator-f8de2f6d380f446a.yaml
rename to releasenotes/notes/0.14/remove_pulse_simulator-f8de2f6d380f446a.yaml
diff --git a/releasenotes/notes/remove_qiskit_test-777882fa1591b6e7.yaml b/releasenotes/notes/0.14/remove_qiskit_test-777882fa1591b6e7.yaml
similarity index 100%
rename from releasenotes/notes/remove_qiskit_test-777882fa1591b6e7.yaml
rename to releasenotes/notes/0.14/remove_qiskit_test-777882fa1591b6e7.yaml
diff --git a/releasenotes/notes/sampler_v2-be0fc5c29a8e2c14.yaml b/releasenotes/notes/0.14/sampler_v2-be0fc5c29a8e2c14.yaml
similarity index 100%
rename from releasenotes/notes/sampler_v2-be0fc5c29a8e2c14.yaml
rename to releasenotes/notes/0.14/sampler_v2-be0fc5c29a8e2c14.yaml
diff --git a/releasenotes/notes/0.13/support_backend_v2-9eeb4690199b01d1.yaml b/releasenotes/notes/0.14/support_backend_v2-9eeb4690199b01d1.yaml
similarity index 100%
rename from releasenotes/notes/0.13/support_backend_v2-9eeb4690199b01d1.yaml
rename to releasenotes/notes/0.14/support_backend_v2-9eeb4690199b01d1.yaml
diff --git a/releasenotes/notes/support_ccz-2a1bb33ed9909a28.yaml b/releasenotes/notes/0.14/support_ccz-2a1bb33ed9909a28.yaml
similarity index 100%
rename from releasenotes/notes/support_ccz-2a1bb33ed9909a28.yaml
rename to releasenotes/notes/0.14/support_ccz-2a1bb33ed9909a28.yaml
diff --git a/releasenotes/notes/windows-blas-42b3dbc170c5ae94.yaml b/releasenotes/notes/0.14/windows-blas-42b3dbc170c5ae94.yaml
similarity index 100%
rename from releasenotes/notes/windows-blas-42b3dbc170c5ae94.yaml
rename to releasenotes/notes/0.14/windows-blas-42b3dbc170c5ae94.yaml