Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
benvanwerkhoven committed Apr 9, 2021
1 parent c1a6bf3 commit b09efbc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## [0.4.0] - 2021-04-09
### Added
- support for (lambda) function instead of list of strings for restrictions
- support for (lambda) function instead of list for specifying grid divisors
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.3.2'
version = u'0.4.0'
# The full version, including alpha/beta/rc tags.
release = u'0.3.2'
release = u'0.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 0 additions & 1 deletion roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ immediate demand for it. If you are interested in any of these, let us know!
* Provide API for analysis of tuning results
* Tuning compiler options in combination with other parameters
* Example that tunes a kernel using thread block re-indexing
* Example CUDA host code that uses runtime compilation
* Extend Fortran support, no more warnings on data types or missing block size parameter etc.
* Turn the C backend into a more general compiler backend
* A get_parameterized_kernel_source function to return the parameterized kernel source for inspection
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def readme():

setup(
name="kernel_tuner",
version="0.3.2",
version="0.4.0",
author="Ben van Werkhoven",
author_email="b.vanwerkhoven@esciencecenter.nl",
description=("An easy to use CUDA/OpenCL kernel tuner in Python"),
Expand All @@ -31,13 +31,13 @@ def readme():
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Topic :: System :: Distributed Computing',
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
],
install_requires=[
'numpy>=1.13.3',
Expand Down

0 comments on commit b09efbc

Please sign in to comment.