Skip to content

Commit

Permalink
bump version to 1.2.6 for pip release
Browse files Browse the repository at this point in the history
  • Loading branch information
bodonoghue committed Apr 28, 2016
1 parent 56b1ba3 commit 35fda41
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.5
current_version = 1.2.6

[bumpversion:file:README.md]

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ convex optimization toolboxes [CVX](http://cvxr.com/cvx/) (3.0 or later),
[Convex.jl](https://github.com/JuliaOpt/Convex.jl), and
[Yalmip](https://github.com/johanlofberg/YALMIP).

The current version is `1.2.5`. If you wish to cite SCS, please use the following:
The current version is `1.2.6`. If you wish to cite SCS, please use the following:
```
@article{ocpb:16,
author = {B. O'Donoghue and E. Chu and N. Parikh and S. Boyd},
Expand All @@ -27,7 +27,7 @@ The current version is `1.2.5`. If you wish to cite SCS, please use the followin
}
@misc{scs,
author = {B. O'Donoghue and E. Chu and N. Parikh and S. Boyd},
title = {{SCS}: Splitting Conic Solver, version 1.2.5},
title = {{SCS}: Splitting Conic Solver, version 1.2.6},
howpublished = {\url{https://github.com/cvxgrp/scs}},
month = apr,
year = 2016
Expand Down
2 changes: 1 addition & 1 deletion include/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ extern "C" {

/* SCS VERSION NUMBER ---------------------------------------------- */
#define SCS_VERSION \
("1.2.5") /* string literals automatically null-terminated */
("1.2.6") /* string literals automatically null-terminated */

/* 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.2.5
% scs 1.2.6
% 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 @@ -148,7 +148,7 @@ def install_scs(**kwargs):
ext_modules += [_scs_gpu]

setup(name='scs',
version='1.2.5',
version='1.2.6',
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.2.5
Version: 1.2.6
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.2.5)
AC_INIT([scs], 1.2.6)

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

0 comments on commit 35fda41

Please sign in to comment.