Skip to content

Commit 09c76b2

Browse files
authored
Release: 24.09 (#364)
1 parent 0973c0d commit 09c76b2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Preamble ####################################################################
22
#
33
cmake_minimum_required(VERSION 3.24.0)
4-
project(pyAMReX VERSION 24.08)
4+
project(pyAMReX VERSION 24.09)
55

66
include(${pyAMReX_SOURCE_DIR}/cmake/pyAMReXFunctions.cmake)
77

cmake/dependencies/AMReX.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ macro(find_amrex)
6565
elseif(NOT pyAMReX_amrex_internal)
6666
message(STATUS "Searching for pre-installed AMReX ...")
6767
# https://amrex-codes.github.io/amrex/docs_html/BuildingAMReX.html#importing-amrex-into-your-cmake-project
68-
find_package(AMReX 24.08 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
68+
find_package(AMReX 24.09 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
6969
message(STATUS "AMReX: Found version '${AMReX_VERSION}'")
7070

7171
if(AMReX_GPU_BACKEND STREQUAL CUDA)
@@ -84,7 +84,7 @@ option(pyAMReX_amrex_internal "Download & build AMReX" ON)
8484
set(pyAMReX_amrex_repo "https://github.com/AMReX-Codes/amrex.git"
8585
CACHE STRING
8686
"Repository URI to pull and build AMReX from if(pyAMReX_amrex_internal)")
87-
set(pyAMReX_amrex_branch "e792933f9561c9ab0e47238c041a6c09818f0908"
87+
set(pyAMReX_amrex_branch "24.09"
8888
CACHE STRING
8989
"Repository branch for pyAMReX_amrex_repo if(pyAMReX_amrex_internal)")
9090

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
# built documents.
7373
#
7474
# The short X.Y version.
75-
version = "24.08"
75+
version = "24.09"
7676
# The full version, including alpha/beta/rc tags.
77-
release = "24.08"
77+
release = "24.09"
7878

7979
# The language for content autogenerated by Sphinx. Refer to documentation
8080
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def build_extension(self, ext):
210210
setup(
211211
name="amrex",
212212
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
213-
version="24.08",
213+
version="24.09",
214214
packages=["amrex"],
215215
# Python sources:
216216
package_dir={"": "src"},

0 commit comments

Comments
 (0)