Skip to content

Commit

Permalink
Merge pull request #84 from pmartorell/fix_compat
Browse files Browse the repository at this point in the history
Add compat entry for MPI
santiagobadia authored May 6, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 361f7f9 + 28ea5d1 commit ee6add0
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.2] - 2024-04-26
## [0.9.2] - 2024-05-06

### Added
- Distributed extension of the cutters and aggregation. The distributed methods work on top of [GridapDistributed.jl](https://github.com/gridap/GridapDistributed.jl) and [PartitionedArrays.jl](https://github.com/fverdugo/PartitionedArrays.jl). Since PR [#81](https://github.com/gridap/GridapEmbedded.jl/pull/81).
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -26,9 +26,10 @@ Algoim = "0.2"
Combinatorics = "1"
CxxWrap = "0.14"
FillArrays = "0.10, 0.11, 0.12, 0.13, 1"
GridapDistributed = "0.3, 0.4"
Gridap = "0.17, 0.18"
GridapDistributed = "0.3, 0.4"
LightGraphs = "1.3.3"
MPI = "0.20"
MiniQhull = "0.1.0, 0.2, 0.3, 0.4"
PartitionedArrays = "0.3.4"
julia = "1.3"
2 changes: 1 addition & 1 deletion test/DistributedTests/mpi/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module MPITests

using MPI
using Test
using MPI

#Sysimage
sysimage=nothing

2 comments on commit ee6add0

@ericneiva
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/105914

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.2 -m "<description of version>" ee6add0429543db992ea9437c1b6b09d77635571
git push origin v0.9.2

Please sign in to comment.