Skip to content

Commit

Permalink
Merge branch 'master' of github.com:gridap/Gridap.jl into facet_integ…
Browse files Browse the repository at this point in the history
…ration_non_conforming_meshes
  • Loading branch information
amartinhuertas committed Apr 19, 2024
2 parents c5a68ae + 532e8de commit 1c50aaa
Show file tree
Hide file tree
Showing 127 changed files with 10,363 additions and 6,602 deletions.
28 changes: 27 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,33 @@ 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.17.23] - 2024-01-28
## [0.18.1] - 2024-04-12

### Changed

- Changed the sign of the residual in `TransientLinearFEOperator` to align with the conventions of `AffineFEOperator`. Since PR[#996](https://github.com/gridap/Gridap.jl/pull/996).

### Fixed

- Bugfix in `restrict_to_field` for `BlockMultiFieldStyle`. Since PR[#993](https://github.com/gridap/Gridap.jl/pull/993).

## [0.18.0] - 2024-04-12

### Breaking

- ODE module extensive refactor. Breaking changes! See docs and PR for details. Since PR[965](https://github.com/gridap/Gridap.jl/pull/965).
- Fixed name clash with `Statistics.mean`. Since PR[#988](https://github.com/gridap/Gridap.jl/pull/988).
- Deprecated `SubVector` in favor of Julia's `view`. Since PR[#989](https://github.com/gridap/Gridap.jl/pull/989).

### Added

- Added some missing API methods to `Assemblers` and `MultiField`. Since PR[#985](https://github.com/gridap/Gridap.jl/pull/985).

### Fixed

- Fix when evaluating `\circ` operator with `CellState`. Since PR[#987](https://github.com/gridap/Gridap.jl/pull/987).

## [0.17.23] - 2024-01-28

### Changed

Expand Down
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Gridap"
uuid = "56d4f2e9-7ea1-5844-9cf6-b9c51ca7ce8e"
authors = ["Santiago Badia <[email protected]>", "Francesc Verdugo <[email protected]>", "Alberto F. Martin <[email protected]>"]
version = "0.17.23"
version = "0.18.1"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand All @@ -26,6 +26,7 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
SparseMatricesCSR = "a0a7dd2c-ebf4-11e9-1f05-cf50bc540ca1"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
WriteVTK = "64499a7a-5c06-52f2-abe2-ccb03c286192"

Expand Down
57 changes: 0 additions & 57 deletions docs/ODEs.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Gridap = "56d4f2e9-7ea1-5844-9cf6-b9c51ca7ce8e"

[compat]
Documenter = "0.25"
Documenter = "1.0"
19 changes: 12 additions & 7 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,25 @@ pages = [
"Gridap.Visualization" => "Visualization.md",
"Gridap.FESpaces" => "FESpaces.md",
"Gridap.MultiField" => "MultiField.md",
"Gridap.ODEs" => "ODEs.md",
"Gridap.Adaptivity" => "Adaptivity.md",
"Developper notes" => Any[
"dev-notes/block-assemblers.md",
],
]
]

makedocs(
sitename = "Gridap.jl",
format = Documenter.HTML(),
modules = [Gridap],
pages = pages
sitename = "Gridap.jl",
format = Documenter.HTML(
size_threshold=nothing
),
modules = [Gridap],
pages = pages,
doctest = false,
warnonly = [:cross_references,:missing_docs],
checkdocs = :exports,
)

deploydocs(
repo = "github.com/gridap/Gridap.jl.git",
repo = "github.com/gridap/Gridap.jl.git",
)

Loading

0 comments on commit 1c50aaa

Please sign in to comment.