Skip to content

Commit

Permalink
Merge pull request #250 from gridap/release-0.10
Browse files Browse the repository at this point in the history
Preparing release 0.10.0
  • Loading branch information
fverdugo authored May 14, 2020
2 parents a9b512c + 60f1231 commit 0116157
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@ 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).

## [Unreleased]
## [0.10.0] - 2020-5-14

### Added

- Extended support of `TriangulationPortion` to boundary and skeleton triangulations. Since PR ...
- Extended support of `TriangulationPortion` to boundary and skeleton triangulations. Since PR [#249](https://github.com/gridap/Gridap.jl/pull/249).
- Added `FESpaceWithLinearConstraints`. Since PR [#247](https://github.com/gridap/Gridap.jl/pull/247).
- Added inner constructor to `CartesianDiscreteModel` allowing to build a model that represents a subgrid of
a larger grid. Since PR [#245](https://github.com/gridap/Gridap.jl/pull/245).

### Changed

- The part associated with the imposition of constraints in the `FESpace` interface has changed slightly. Since PR [#247](https://github.com/gridap/Gridap.jl/pull/247).
- Simplified the signature of `zero_free_values(::FESpace)`. Since PR ...
- Simplified the signature of `zero_free_values(::FESpace)`. Since PR [#249](https://github.com/gridap/Gridap.jl/pull/249).
- Major refactoring in the `Assembler` interface.
**Important change:** assembly-related functions take the data returned by functions like
**Important change:** Now, assembly-related functions take the data returned by functions like
`collect_cell_matrix` as it is. Example: the old user code `assemble_matrix(assembler,collect_cell_matrix(du,dv,terms)...)`
now is written simply as `assemble_matrix(assembler,collect_cell_matrix(du,dv,terms))`, i.e., the unpack of the last argument is not
used anymore. With new new assembler interface, it is also possible to customize the assembly process
via a so-called `AssemblerStrategy` object. Since PR ...
used anymore. In addition, with the new assembler interface, it is possible to customize the assembly process
via a so-called `AssemblerStrategy` object. Since PR [#249](https://github.com/gridap/Gridap.jl/pull/249).
- Change the types of the sizes and partition fields of CartesianDescriptor to tuples instead of points.
Since PR [#246](https://github.com/gridap/Gridap.jl/pull/246).

Expand Down

2 comments on commit 0116157

@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/14745

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.10.0 -m "<description of version>" 0116157ad335dcba70d82172fa9a8c189564bb0b
git push origin v0.10.0

Please sign in to comment.