diff --git a/CHANGELOG.md b/CHANGELOG.md index 965857f88..3f236e774 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [0.4.4] - 2023-03-09 ### Added - Support for using time_limit in simulation mode - Helper functions for energy tuning @@ -12,6 +13,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Changed - Changed what timings are stored in cache files +- No longer inserting partial loop unrolling factor of 0 in CUDA ## [0.4.3] - 2022-10-19 ### Added diff --git a/doc/source/conf.py b/doc/source/conf.py index e97f812ab..c211c642e 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = u'0.4.3' +version = u'0.4.4' # The full version, including alpha/beta/rc tags. -release = u'0.4.3' +release = u'0.4.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/kernel_tuner/__init__.py b/kernel_tuner/__init__.py index 7a38ac51d..da3df1bfb 100644 --- a/kernel_tuner/__init__.py +++ b/kernel_tuner/__init__.py @@ -1,4 +1,4 @@ from kernel_tuner.integration import store_results, create_device_targets from kernel_tuner.interface import tune_kernel, run_kernel -__version__ = "0.4.3" +__version__ = "0.4.4"