diff --git a/CHANGELOG.md b/CHANGELOG.md index 19eebd73..fc331684 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v0.11.0 +### New features +* Extend DPLSTM to support multilayer, dropout (#101) +* Modifications to Char LSTM name classification example +* Introduce issue templates for GitHub (#102) +* Added support for Conv3D layers +### Bug fixes +* Linter fixes for Conv3D (#105) +### Miscellaneous +* Make TorchCSPRNG an optional dependency (#106) +* Removed unnecessary calls to zero_grad from examples and tutorials (#96) + ## v0.10.1 ### Bug fixes * Fix PyPI deployment (#91). diff --git a/setup.py b/setup.py index 29de4356..02687cf8 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ setup( name="opacus", - version="0.10.1", + version="0.11.0", author="The Opacus Team", description="Train PyTorch models with Differential Privacy", long_description=long_description,