Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,22 @@

# v0.4
- `@function f(x) = 4x` defines a function
- Functions may be used inside constraints (only functions of a single variable,
returning a single variable, for now).
- Functions may be iterated.
- Local variables may be introduced.
- Simple plotting solution for the results of `pave`.
- Major internals rewrite.
- Functions may be used inside constraints
- Functions may be iterated
- Functions may be multi-dimensional
- Local variables may be introduced
- Simple plotting solution for the results of `pave` using `Plots.jl` recipes
(via `ValidatedNumerics.jl`):
```
using Plots
gr() # preferred (fast) backed for `Plots.jl`
plot(paving.inner)
plot!(paving.boundary)
```
- Major internals rewrite
- Unary minus and `power_rev` with odd powers now work correctly
- Examples updated
- Basic documentation using `Documenter.jl`


# v0.3
Expand Down