Skip to content

Commit

Permalink
Merge pull request #83 from pmartorell/bump_version_0.9.2
Browse files Browse the repository at this point in the history
Bump version 0.9.2
  • Loading branch information
ericneiva authored Apr 29, 2024
2 parents 8f22018 + a05d4d8 commit 361f7f9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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

### 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).

## [0.9.1] - 2024-04-12

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GridapEmbedded"
uuid = "8838a6a3-0006-4405-b874-385995508d5d"
authors = ["Francesc Verdugo <[email protected]>", "Eric Neiva <[email protected]>", "Santiago Badia <[email protected]>"]
version = "0.9.1"
version = "0.9.2"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down
2 changes: 1 addition & 1 deletion src/Interfaces/EmbeddedDiscretizations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ end
function Triangulation(cut::EmbeddedDiscretization,in_or_out::Tuple,geo::CSG.Geometry)
trian1 = Triangulation(cut,in_or_out[1],geo)
trian2 = Triangulation(cut,in_or_out[2],geo)
lazy_append(trian1,trian2)
num_cells(trian1) == 0 ? trian2 : lazy_append(trian1,trian2)
end

function Triangulation(cut::EmbeddedDiscretization,in_or_out::CutInOrOut,geo::CSG.Geometry)
Expand Down
3 changes: 2 additions & 1 deletion src/Interfaces/EmbeddedFacetDiscretizations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ function BoundaryTriangulation(

trian1 = BoundaryTriangulation(facets,cut,in_or_out[1],geo)
trian2 = BoundaryTriangulation(facets,cut,in_or_out[2],geo)
lazy_append(trian1,trian2)
num_cells(trian1) == 0 ? trian2 : lazy_append(trian1,trian2)

end

function BoundaryTriangulation(
Expand Down

2 comments on commit 361f7f9

@ericneiva
Copy link
Member Author

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 created: 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>" 361f7f9b4922066157c1a6bbe4dc3f560cfee6d2
git push origin v0.9.2

Please sign in to comment.