v1.1.0
What's Changed
Added support for python 3.8+.
Python 3.8 functools.lru_cache added support for using as a plain decorator.
@lru_cache()
def oldway():
...
@lru_cache
def newway():
...
- Fix build by @ipwnponies in #18
Full Changelog: v1.0.5...v1.1.0