Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ We are operating with `semantic versioning <https://semver.org>`_.
- Bug fixes (PATCH) go here.
- $CHANGE by :gh-user:`mikeboers` in (:pr:`1`).

v17.0.1 (next)
--------------

Fixes:

- A cdivision decorator for faster division.

v17.0.0
-------

Expand Down
2 changes: 1 addition & 1 deletion av/about.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "17.0.0"
__version__ = "17.0.1pre"
1 change: 1 addition & 0 deletions av/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def duration(self, value):
self.ptr.duration = value

@property
@cython.cdivision(True)
def time(self):
"""
The presentation time in seconds for this frame.
Expand Down
Loading