Skip to content

Commit

Permalink
bump to 1.2.2 for pip update
Browse files Browse the repository at this point in the history
  • Loading branch information
bodonoghue committed Feb 18, 2016
1 parent 210b3ce commit 200f31e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 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.1
current_version = 1.2.2

[bumpversion:file:python/setup.py]

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.1") /* string literals automatically null-terminated */
("1.2.2") /* 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.1
% scs 1.2.2
% 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 @@ -149,7 +149,7 @@ def install_scs(**kwargs):
ext_modules += [_scs_gpu]

setup(name='scs',
version='1.2.1',
version='1.2.2',
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.1
Version: 1.2.2
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.1)
AC_INIT([scs], 1.2.2)

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

0 comments on commit 200f31e

Please sign in to comment.