Skip to content

Commit b09efbc

Browse files
bump version
1 parent c1a6bf3 commit b09efbc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## Unreleased
66

7+
## [0.4.0] - 2021-04-09
78
### Added
89
- support for (lambda) function instead of list of strings for restrictions
910
- support for (lambda) function instead of list for specifying grid divisors

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = u'0.3.2'
62+
version = u'0.4.0'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'0.3.2'
64+
release = u'0.4.0'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

roadmap.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ immediate demand for it. If you are interested in any of these, let us know!
2828
* Provide API for analysis of tuning results
2929
* Tuning compiler options in combination with other parameters
3030
* Example that tunes a kernel using thread block re-indexing
31-
* Example CUDA host code that uses runtime compilation
3231
* Extend Fortran support, no more warnings on data types or missing block size parameter etc.
3332
* Turn the C backend into a more general compiler backend
3433
* A get_parameterized_kernel_source function to return the parameterized kernel source for inspection

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def readme():
1414

1515
setup(
1616
name="kernel_tuner",
17-
version="0.3.2",
17+
version="0.4.0",
1818
author="Ben van Werkhoven",
1919
author_email="[email protected]",
2020
description=("An easy to use CUDA/OpenCL kernel tuner in Python"),
@@ -31,13 +31,13 @@ def readme():
3131
'License :: OSI Approved :: Apache Software License',
3232
'Natural Language :: English',
3333
'Operating System :: POSIX :: Linux',
34-
'Programming Language :: Python :: 3.5',
3534
'Programming Language :: Python :: 3.6',
3635
'Programming Language :: Python :: 3.7',
36+
'Programming Language :: Python :: 3.8',
3737
'Topic :: Scientific/Engineering',
3838
'Topic :: Software Development',
3939
'Topic :: System :: Distributed Computing',
40-
'Development Status :: 4 - Beta',
40+
'Development Status :: 5 - Production/Stable',
4141
],
4242
install_requires=[
4343
'numpy>=1.13.3',

0 commit comments

Comments
 (0)