Skip to content

Commit

Permalink
bump to v1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
bodonoghue committed Jun 24, 2015
1 parent 9de4349 commit 0f9f51d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.4
current_version = 1.1.5

[bumpversion:file:python/setup.py]

Expand All @@ -8,5 +8,6 @@ current_version = 1.1.4
[bumpversion:file:matlab/scs.m]

[bumpversion:file:r/configure.ac]

[bumpversion:file:r/DESCRIPTION]

2 changes: 1 addition & 1 deletion include/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ extern "C" {
#endif

/* SCS VERSION NUMBER ---------------------------------------------- */
#define SCS_VERSION ("1.1.4")
#define SCS_VERSION ("1.1.5")

/* SCS returns one of the following integers: */
#define SCS_INFEASIBLE_INACCURATE (-7)
Expand Down
2 changes: 1 addition & 1 deletion matlab/scs.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function [ x, y, s, info ] = scs( varargin )
% scs 1.1.4
% scs 1.1.5
% for version call: scs_version()
data = varargin{1};
K = varargin{2};
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def install_scs(USE_64_BIT_BLAS, blas_info, lapack_info, USE_OPENMP, rootDir):
extra_compile_args=extra_compile_args
)
setup(name='scs',
version='1.1.4',
version='1.1.5',
author = 'Brendan O\'Donoghue',
author_email = '[email protected]',
url = 'http://github.com/cvxgrp/scs',
Expand Down
2 changes: 1 addition & 1 deletion r/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: scs
Version: 1.1.4
Version: 1.1.5
Title: SCS - Splitting Conic Solver
Author: Brendan O'Donoghue
Maintainer: Brendan O'Donoghue <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion r/configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl R interface to SCS

AC_INIT([scs], 1.1.4)
AC_INIT([scs], 1.1.5)

SCS_FLAGS="-DLAPACK_LIB_FOUND -DCOPYAMATRIX"
SCS_LIBS="-lm"
Expand Down

0 comments on commit 0f9f51d

Please sign in to comment.