Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
dcwatson committed May 20, 2024
1 parent 7254399 commit d663e5b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## 3.4.8
## 3.5.0

* Removed `trigger_type.snapshot` so that delete triggers will now record snapshots.
Added `trigger_type.snapshot_of` to determine snapshot of OLD or NEW object.
* Removed `TriggerType.snapshot` so that delete triggers will now record snapshots.
Added `TriggerType.snapshot_of` to determine whether snapshots are of `OLD` or `NEW`.


## 3.4.7
Expand Down
2 changes: 1 addition & 1 deletion history/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .backends import get_backend, session # noqa
from .utils import get_history_model # noqa

__version__ = "3.4.7"
__version__ = "3.5.0"
__version_info__ = tuple(
int(num) if num.isdigit() else num
for num in re.findall(r"([a-z\d]+)", __version__, re.I)
Expand Down

0 comments on commit d663e5b

Please sign in to comment.