Skip to content

Commit

Permalink
added changelog and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
emptymalei committed May 20, 2021
1 parent 675f36a commit a165903
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# HAFER ML Changelog

## 2021-05-20, 0.0.12

We have added two new decorators for convenience.

`order`

In the previous version, we had `attributes`. Most of the time, we do not care about which attribute name that we used if we just need to order the member functions.

For this reason, we created this new decorator `order` and simply use `@order(1)` and we are done.

`with_transforms`

If one would like to write a customized transform class, it takes a lot of effort in the previous version of the package. Now we can simply apply the decorator `@with_transforms` and the member function can access the ordered transforms using `self.transforms`.


## 2021-05-09, 0.0.11

1. Added config generation tool.
Expand Down
2 changes: 1 addition & 1 deletion haferml/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.11"
__version__ = "0.0.12"

0 comments on commit a165903

Please sign in to comment.