Skip to content

Commit 9c6cf3c

Browse files
authored
Release 23.11 (#462)
Prepare the November release of ImpactX.
1 parent 38829dc commit 9c6cf3c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
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.20.0)
4-
project(ImpactX VERSION 23.10)
4+
project(ImpactX VERSION 23.11)
55

66
include(${ImpactX_SOURCE_DIR}/cmake/ImpactXFunctions.cmake)
77

cmake/dependencies/ABLASTR.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ macro(find_ablastr)
144144
set(COMPONENT_DIM 3D)
145145
set(COMPONENT_PRECISION ${ImpactX_PRECISION} P${ImpactX_PRECISION})
146146

147-
find_package(ABLASTR 23.10 CONFIG REQUIRED COMPONENTS ${COMPONENT_DIM})
147+
find_package(ABLASTR 23.11 CONFIG REQUIRED COMPONENTS ${COMPONENT_DIM})
148148
message(STATUS "ABLASTR: Found version '${ABLASTR_VERSION}'")
149149
endif()
150150

@@ -178,15 +178,15 @@ set(ImpactX_openpmd_src ""
178178
set(ImpactX_ablastr_repo "https://github.com/ECP-WarpX/WarpX.git"
179179
CACHE STRING
180180
"Repository URI to pull and build ABLASTR from if(ImpactX_ablastr_internal)")
181-
set(ImpactX_ablastr_branch "8af2c31353193df69f29b5bcf3205adda1ba29e8"
181+
set(ImpactX_ablastr_branch "23.11"
182182
CACHE STRING
183183
"Repository branch for ImpactX_ablastr_repo if(ImpactX_ablastr_internal)")
184184

185185
# AMReX is transitively pulled through ABLASTR
186186
set(ImpactX_amrex_repo "https://github.com/AMReX-Codes/amrex.git"
187187
CACHE STRING
188188
"Repository URI to pull and build AMReX from if(ImpactX_amrex_internal)")
189-
set(ImpactX_amrex_branch "be6c6415467d09da6109d27cfa218868abc1f9db"
189+
set(ImpactX_amrex_branch ""
190190
CACHE STRING
191191
"Repository branch for ImpactX_amrex_repo if(ImpactX_amrex_internal)")
192192

cmake/dependencies/pyAMReX.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function(find_pyamrex)
6464
endif()
6565
elseif(NOT ImpactX_pyamrex_internal)
6666
# TODO: MPI control
67-
find_package(pyAMReX 23.10 CONFIG REQUIRED)
67+
find_package(pyAMReX 23.11 CONFIG REQUIRED)
6868
message(STATUS "pyAMReX: Found version '${pyAMReX_VERSION}'")
6969
endif()
7070
endfunction()
@@ -79,7 +79,7 @@ option(ImpactX_pyamrex_internal "Download & build pyAMReX" ON)
7979
set(ImpactX_pyamrex_repo "https://github.com/AMReX-Codes/pyamrex.git"
8080
CACHE STRING
8181
"Repository URI to pull and build pyamrex from if(ImpactX_pyamrex_internal)")
82-
set(ImpactX_pyamrex_branch "2669550404bf1b96dd432518d5d490f0e3979d33"
82+
set(ImpactX_pyamrex_branch "23.11"
8383
CACHE STRING
8484
"Repository branch for ImpactX_pyamrex_repo if(ImpactX_pyamrex_internal)")
8585

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@
7373
# built documents.
7474
#
7575
# The short X.Y version.
76-
version = "23.10"
76+
version = "23.11"
7777
# The full version, including alpha/beta/rc tags.
78-
release = "23.10"
78+
release = "23.11"
7979

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def build_extension(self, ext):
235235
setup(
236236
name="impactx",
237237
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
238-
version="23.10",
238+
version="23.11",
239239
packages=["impactx"],
240240
# Python sources:
241241
package_dir={"": "src/python"},

0 commit comments

Comments
 (0)