diff --git a/README.md b/README.md index bf2e1297b..67f606dd1 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,16 @@ The foundations of this project are described in the following MAPL2019 publicat The [official documentation](https://triton-lang.org) contains installation instructions and tutorials. +# Changelog + +Version 1.1 is out! New features include: +- Many, many bugfixes +- More documentation +- Automatic on-disk caching of compiled binary objects +- Random Number Generation +- Faster (up to 2x on A100), cleaner blocksparse ops +- Fixed the semantics of comparison with NaN to match that of Python + # Contributing Community contributions are more than welcome, whether it be to fix bugs or to add new features. Feel free to open GitHub issues about your contribution ideas, and we will review them. A contributor's guide containing general guidelines is coming soon! diff --git a/python/setup.py b/python/setup.py index 52f324412..3d8d4250a 100644 --- a/python/setup.py +++ b/python/setup.py @@ -121,7 +121,7 @@ class CMakeBuild(build_ext): setup( name="triton", - version="1.0.1", + version="1.1.0", author="Philippe Tillet", author_email="phil@openai.com", description="A language and compiler for custom Deep Learning operations",