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

prepare release notes for EasyBuild v4.8.0 + bump version to 4.8.0 #2957

Merged
merged 1 commit into from
Jul 7, 2023
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
23 changes: 22 additions & 1 deletion RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,27 @@ For more detailed information, please see the git log.

These release notes can also be consulted at http://easybuild.readthedocs.org/en/latest/Release_notes.html.

The latest version of easybuild-easyblocks provides 248 software-specific easyblocks and 41 generic easyblocks.
The latest version of easybuild-easyblocks provides 249 software-specific easyblocks and 42 generic easyblocks.


v4.8.0 (7 July 2023)
--------------------

feature release

- add `PerlBundle` generic easyblock for installing a bundle of Perl modules (#2945)
- add custom easyblock for Rust, which makes sure that all shared libraries use RPATH rather than RUNPATH if --rpath is used (#2952)
- minor enhancements and updates, including:
- add support for NVIDIA Hopper CC 9.0 in LAMMPS (#2941)
- add support for `install_cmds` in `Binary` easyblock (#2953)
- various bug fixes, including:
- patch CMake's UnixPaths.cmake script if --sysroot is set (#2248)
- fix incorrect sanity_check_step for torchvision (#2938)
- update OpenBLAS easyblock since make shared is necessary and sufficient with OpenBLAS 0.3.23 + recent parallel build fixes (#2944)
- improve handling of `optarch` in `Cargo` easyblock (#2947)
- reset modules loaded by PythonPackage to let ExtensionEasyBlock handle `multi_deps` correctly (#2951)
- other changes:
- stop running tests with Python 2.7 since it is no longer supported in GitHub Actions (#2943)


v4.7.2 (27 May 2023)
Expand All @@ -23,6 +43,7 @@ v4.7.2 (27 May 2023)
- force building torchvision with CUDA support if CUDA is included as dependency by setting `$FORCE_CUDA` (#2931)
- fix exec permission on files in arch bindir for COMSOL (#2932)


v4.7.1 (March 20th 2023)
------------------------

Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyblocks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# recent setuptools versions will *TRANSFORM* something like 'X.Y.Zdev' into 'X.Y.Z.dev0', with a warning like
# UserWarning: Normalizing '2.4.0dev' to '2.4.0.dev0'
# This causes problems further up the dependency chain...
VERSION = LooseVersion('4.7.3.dev0')
VERSION = LooseVersion('4.8.0')
UNKNOWN = 'UNKNOWN'


Expand Down
Loading