Skip to content

Commit abed7f7

Browse files
committed
updated version number to 1.1.0
1 parent 029feca commit abed7f7

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cmake_minimum_required( VERSION 3.7 )
88
set_property( GLOBAL PROPERTY USE_FOLDERS ON )
99

1010
if( NOT PROJECT_NAME )
11-
project( Gpufit VERSION 1.0.2 )
11+
project( Gpufit VERSION 1.1.0 )
1212
include( CTest )
1313
endif()
1414

Gpufit/java/gpufit/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.github.gpufit'
2-
version '1.0.2'
2+
version '1.1.0'
33

44
apply plugin: 'java'
55

Gpufit/java/gpufit/src/main/java/com/github/gpufit/Gpufit.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class Gpufit {
1919
/**
2020
* Version of the used Gpufit library.
2121
*/
22-
public static final String VERSION = "1.0.2";
22+
public static final String VERSION = "1.1.0";
2323

2424
static {
2525
/*

Gpufit/matlab/gpufit_version.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function version = gpufit_version()
22
% Returns the version of Gpufit
33

4-
version = '1.0.2';
4+
version = '1.1.0';
55

66
end

Gpufit/python/pygpufit/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Current version (short and full names).
33
"""
44

5-
__version_short__ = '1.0'
6-
__version_full__ = '1.0.2'
5+
__version_short__ = '1.1'
6+
__version_full__ = '1.1.0'
77

88
__version__ = __version_full__

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
# built documents.
6262
#
6363
# The short X.Y version.
64-
version = u'1.0'
64+
version = u'1.1'
6565
# The full version, including alpha/beta/rc tags.
66-
release = u'1.0.2'
66+
release = u'1.1.0'
6767

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

docs/epilog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
..
33
The content of this file will be appended to every documentation file. Put common substitutions and links here.
44

5-
.. |GF_version| replace:: 1.0.2
5+
.. |GF_version| replace:: 1.1.0
66

77
.. _CUDA: http://developer.nvidia.com/cuda-zone
88
.. _CUDA_SELECT_NVCC_ARCH_FLAGS: http://cmake.org/cmake/help/v3.7/module/FindCUDA.html

package/sdk_readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Software development kit for the Gpufit library (https://github.com/gpufit/Gpufit)
22
which implements Levenberg Marquardt curve fitting in CUDA.
33

4-
Gpufit 1.0.2
4+
Gpufit 1.1.0
55

66
Compiled with the Microsoft Visual Studio 2015 C++ compiler and CUDA toolkit 8.0.
77

0 commit comments

Comments
 (0)