Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
Prepare for release v2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkgr committed Jul 19, 2021
1 parent ef5400d commit b2e62a2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

Nothing so far!


## [v2.6.0](https://github.com/allenai/allennlp/releases/tag/v2.6.0) - 2021-07-19

### Added

- Added `on_backward` training callback which allows for control over backpropagation and gradient manipulation.
Expand Down
4 changes: 2 additions & 2 deletions allennlp/version.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import os

_MAJOR = "2"
_MINOR = "5"
_MINOR = "6"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "1"
_PATCH = "0"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = os.environ.get("ALLENNLP_VERSION_SUFFIX", "")
Expand Down

0 comments on commit b2e62a2

Please sign in to comment.