Skip to content

Commit

Permalink
Merge pull request #50 from gridap/release_0.5
Browse files Browse the repository at this point in the history
Release 0.5.0
  • Loading branch information
fverdugo authored Nov 24, 2021
2 parents 0afb7af + 281b9cc commit 0eb93ac
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
6 changes: 5 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ 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.5.0] - 2021-11-24
### Changed
- Restrict to Gridap 0.17 as required for surface meshes.

## [0.4.5] - 2021-11-24
### Fixed
- Some tests failing for Gridap 0.16
- Some tests failing for Gridap 0.16.

## [0.4.4] - 2021-11-22

Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name = "GridapGmsh"
uuid = "3025c34a-b394-11e9-2a55-3fee550c04c8"
authors = ["Francesc Verdugo <[email protected]>"]
version = "0.4.5"
version = "0.5.0"

[deps]
Gridap = "56d4f2e9-7ea1-5844-9cf6-b9c51ca7ce8e"
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
gmsh_jll = "630162c2-fc9b-58b3-9910-8442a8a132e6"

[compat]
Gridap = "0.15, 0.16.1, 0.17"
Gridap = "0.17"
gmsh_jll = "4.7.1"
julia = "1.3"

Expand Down
22 changes: 9 additions & 13 deletions src/GmshDiscreteModels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -59,22 +59,18 @@ function _setup_grid(gmsh)
cell_n = lazy_map(Operation(_unit_outward_normal),cell_Jt)
cell_nx = lazy_map(evaluate,cell_n,cell_x) |> collect
facet_normal = lazy_map(constant_field,cell_nx)
grid = UnstructuredGrid(
node_to_coords,
cell_to_nodes,
reffes,
cell_to_type,
orientation,
facet_normal)
else
grid = UnstructuredGrid(
node_to_coords,
cell_to_nodes,
reffes,
cell_to_type,
orientation)
facet_normal = nothing
end

grid = UnstructuredGrid(
node_to_coords,
cell_to_nodes,
reffes,
cell_to_type,
orientation,
facet_normal)

(grid, cell_to_entity)

end
Expand Down

2 comments on commit 0eb93ac

@fverdugo
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/49327

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.5.0 -m "<description of version>" 0eb93ac318a8104d02a3ff2d2529012c7590577c
git push origin v0.5.0

Please sign in to comment.