Skip to content

Commit

Permalink
version bump and changelog update (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
glyg authored Sep 16, 2019
1 parent eab38c9 commit 2251ee5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
23 changes: 16 additions & 7 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,29 @@
# What's new in 0.5.1
# What's new in 0.6.0

## SolverIVP desapeared
## Topology

Some bug fixes for 3D rearangements

## Collisions

Puts an exact kernel in c_collisions.cpp


## We switched to CodeCoV for coverage reports (purely from hype/style motivations)

## SolverIVP disapeared

In the absence of a clear way to deal with rearangement, we had to let this go for now, it may come back later...

## Behaviors

- We add two basics function in actions for sheet tissue : increase and decrease. In the near future, we will removed deprecated function that increase and decrease will replace (such as growth, shrink, contract and relax).
- We add two basics function in actions for sheet tissue : `increase` and `decrease`. In the near future, we will removed deprecated function that `increase` and `decrease` will replace (such as `growth`, `shrink`, `contract` and `relax`).

## History and HistoryHdf5

- new `HistoryHdf5` class that records each time point in a hdf file instead of in memory.

- new `browse_history` function that creates a widget to slide through the different time points
- new `browse_history` function that creates a widget to slide through the different time points with an ipyvolume 3D view

## Draw

Expand All @@ -34,11 +45,9 @@ specs = {
This way, the color is updated at each function call, without having to define a new function.



## Utils

- new `get_next` function returns the indexes of the next half-edge for every edge (e.g the edge whose srce is the trgt of the current edge)

- new `get_next` function returns the indexes of the next half-edge for every edge (e.g the edge whose `srce` is the `trgt` of the current edge)


# What's new in 0.5
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
## Version management copied form numpy
## Thanks to them!
MAJOR = 0
MINOR = 5
MINOR = 6
MICRO = 0
ISRELEASED = False
ISRELEASED = True
VERSION = "%d.%d.%s" % (MAJOR, MINOR, MICRO)


Expand Down

0 comments on commit 2251ee5

Please sign in to comment.