Skip to content

Commit af91017

Browse files
bump version
1 parent f388063 commit af91017

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## Unreleased
66

7+
## [0.3.0] - 2019-12-20
78
### Changed
89
- fix for output checking, custom verify functions are called just once
9-
- benchmarking returns multiple results not only time
10+
- benchmarking now returns multiple results not only time
1011
- more sophisticated implementation of genetic algorithm strategy
11-
- how the method to the strategy is passed, use strategy_options
12+
- how the "method" option is passed, now use strategy_options
1213

1314
### Added
1415
- Bayesian Optimizaton strategy, use strategy="bayes_opt"

CITATION.cff

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors:
88
name-particle: van
99
orcid: "https://orcid.org/0000-0002-7508-3272"
1010
11-
date-released: 2017-11-23
11+
date-released: 2019-12-20
1212
doi: 10.5281/zenodo.1220113
1313
keywords:
1414
- "GPU Computing"
@@ -29,7 +29,7 @@ references:
2929
3030
title: "Kernel Tuner: A Search-Optimizing GPU Code Auto-Tuner"
3131
journal: "Future Generation Computer Systems"
32-
year: 2018
32+
year: 2019
3333
repository-code: "https://github.com/benvanwerkhoven/kernel_tuner"
3434
title: Kernel Tuner
35-
version: "0.2.0"
35+
version: "0.3.0"

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.2.0'
62+
version = u'0.3.0'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'0.2.0'
64+
release = u'0.3.0'
6565

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def readme():
1414

1515
setup(
1616
name="kernel_tuner",
17-
version="0.2.0",
17+
version="0.3.0",
1818
author="Ben van Werkhoven",
1919
author_email="[email protected]",
2020
description=("An easy to use CUDA/OpenCL kernel tuner in Python"),

0 commit comments

Comments
 (0)