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

v0.10.0 post-release #2381

Merged
merged 10 commits into from
Aug 13, 2024
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
22 changes: 21 additions & 1 deletion CITATION.bib
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,27 @@ @INPROCEEDINGS{
pages={274--282},
doi={10.1109/EMPDP.2019.8671560},
ISSN={2377-5750}}


@software{arbor_0_10_0,
author = {Cumming, Benjamin and
Yates, Stuart and
Hater, Thorsten and
Lu, Han and
Huisman, Brent and
Wouter, Klijn and
Bösch, Fabian and
Frasch, Simon and
de Schepper, Robin and
Luboeinski, Jannik},
title = {Arbor v0.10.0},
month = aug,
year = 2024,
publisher = {Zenodo},
version = {v0.10.0},
doi = {10.5281/zenodo.13284789},
url = {https://doi.org/10.5281/zenodo.13284789}
}

@software{nora_abi_akar_2023_8233847,
author = {Nora Abi Akar and
John Biddiscombe and
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.0
0.10.0-dev
10 changes: 8 additions & 2 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ The Arbor software can be cited by version via Zenodo or via Arbors introductory
Latest version
|zlatest|

Version 0.10.0
|z0100|

Version 0.9.0
|z090|

Expand Down Expand Up @@ -92,8 +95,11 @@ Cite (Bibtex format)
.. |intropaper| image:: https://zenodo.org/badge/DOI/10.1109/EMPDP.2019.8671560.svg
:target: https://doi.org/10.1109/EMPDP.2019.8671560

.. |zlatest| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.1459678.svg
:target: https://doi.org/10.5281/zenodo.1459678
.. |zlatest| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.13284789.svg
:target: https://doi.org/10.5281/zenodo.13284789image::

.. |z0100| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.13284789.svg
:target: https://doi.org/10.5281/zenodo.13284789

.. |z090| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.8233847.svg
:target: https://doi.org/10.5281/zenodo.8233847
Expand Down
2 changes: 1 addition & 1 deletion scripts/check-all-tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ PREFIX="${1:-} `pwd`/build/bin"
cxx=/usr/local/opt/llvm/bin/clang++
cc=/usr/local/opt/llvm/bin/clang

for tag in v0.4 v0.5.2 v0.6 v0.7 v0.8 v0.8.1 v0.9.0
for tag in v0.4 v0.5.2 v0.6 v0.7 v0.8 v0.8.1 v0.9.0 v0.10.0
do
echo "Version=$tag"
rm -rf ext/*
Expand Down
11 changes: 11 additions & 0 deletions spack/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ class Arbor(CMakePackage, CudaPackage):

version("master", branch="master", submodules=True)
version("develop", branch="master", submodules=True)
version(
"0.10.0",
sha256="6b6cc900b85fbf833fae94817b9406a0d690dc28",
url="https://github.com/arbor-sim/arbor/releases/download/v0.10.1/arbor-v0.10.0-full.tar.gz",
submodules=True,
)

version(
"0.9.0",
sha256="5f9740955c821aca81e23298c17ad64f33f635756ad9b4a0c1444710f564306a",
Expand Down Expand Up @@ -83,15 +90,18 @@ class Arbor(CMakePackage, CudaPackage):
depends_on("[email protected]:", when="@0.5.3:") # required by the modcc compiler
depends_on("[email protected]:", when="@0.7.1:")
depends_on("[email protected]:", when="@0.9.1:")
depends_on("[email protected]:", when="@0.10.0:")
depends_on("[email protected]:", when="@0.7.1:")
depends_on("[email protected]:", when="@0.7.1:")
depends_on("[email protected]:", when="@0.9.1:")
depends_on("[email protected]:", when="@0.10.0:")
depends_on("[email protected]:")
depends_on("[email protected]:")
with when("+cuda"):
depends_on("cuda@10:")
depends_on("cuda@11:", when="@0.7.1:")
depends_on("cuda@12:", when="@0.9.1:")
depends_on("cuda@12:", when="@0.10.0:")

# mpi
depends_on("mpi", when="+mpi")
Expand All @@ -107,6 +117,7 @@ class Arbor(CMakePackage, CudaPackage):
depends_on("[email protected]:", when="@0.5.3:", type="build")
depends_on("[email protected]:", when="@0.7.1:", type="build")
depends_on("[email protected]:", when="@0.7.1:", type="build")
depends_on("[email protected]:", when="@2.11.1:", type="build")

# sphinx based documentation
with when("+doc"):
Expand Down