Skip to content

Commit

Permalink
Bump version: 0.1.2 → 0.1.201
Browse files Browse the repository at this point in the history
  • Loading branch information
bstellato committed Sep 21, 2017
1 parent 5fb244c commit aa918e5
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.1.201
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@ subject to l <= A x <= u
where `x in R^n` is the optimization variable. The objective function is defined by a positive semidefinite matrix `P in S^n_+` and vector `q in R^n`. The linear constraints are defined by matrix `A in R^{m x n}` and vectors `l in R^m U {-inf}^m`, `u in R^m U {+inf}^m`.


The latest version is `0.1.2`.
The latest version is `0.1.201`.

<br>

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -23,7 +23,7 @@
# sys.path.insert(0, os.path.abspath('.'))

# Set version for bumpversion
__version__ = "0.1.2"
__version__ = "0.1.201"

# -- General configuration ------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen.conf
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "OSQP"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.1.2
PROJECT_NUMBER = 0.1.201

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 2 additions & 2 deletions docs/installation/matlab.rst
Expand Up @@ -6,13 +6,13 @@ OSQP Matlab interface requires Matlab 2015b or newer.
Binaries
--------

Precompiled platform-dependent Matlab binaries are available on `Github <https://github.com/oxfordcontrol/osqp/releases/tag/v0.1.2>`_.
Precompiled platform-dependent Matlab binaries are available on `Github <https://github.com/oxfordcontrol/osqp/releases/tag/v0.1.201>`_.

To install the interface, just run the following commands:

.. code:: matlab
websave('install_osqp.m', 'https://github.com/oxfordcontrol/osqp/releases/download/v0.1.2/install_osqp.m');
websave('install_osqp.m', 'https://github.com/oxfordcontrol/osqp/releases/download/v0.1.201/install_osqp.m');
install_osqp
Expand Down
2 changes: 1 addition & 1 deletion include/constants.h
Expand Up @@ -9,7 +9,7 @@ extern "C" {
/*******************
* OSQP Versioning *
*******************/
#define OSQP_VERSION ("0.1.2") /* string literals automatically null-terminated */
#define OSQP_VERSION ("0.1.201") /* string literals automatically null-terminated */


/******************
Expand Down
2 changes: 1 addition & 1 deletion interfaces/matlab/osqp.m
@@ -1,5 +1,5 @@
classdef osqp < handle
% osqp interface class for OSQP solver v0.1.2
% osqp interface class for OSQP solver v0.1.201
% This class provides a complete interface to the C implementation
% of the OSQP solver.
%
Expand Down
2 changes: 1 addition & 1 deletion interfaces/matlab/package/install_osqp.m
Expand Up @@ -11,7 +11,7 @@
end

fprintf('Downloading binaries...');
package_name = sprintf('https://github.com/oxfordcontrol/osqp/releases/download/v0.1.2/osqp-0.1.2-matlab-%s.tar.gz', platform);
package_name = sprintf('https://github.com/oxfordcontrol/osqp/releases/download/v0.1.201/osqp-0.1.201-matlab-%s.tar.gz', platform);
websave('osqp.tar.gz', package_name);
fprintf('\t\t\t\t[done]\n');

Expand Down
4 changes: 2 additions & 2 deletions interfaces/python/conda_recipe/osqp/meta.yaml
@@ -1,10 +1,10 @@
package:
name: osqp
version: "0.1.2"
version: "0.1.201"

source:
git_url: https://github.com/oxfordcontrol/osqp.git
git_tag: v0.1.2
git_tag: v0.1.201


# build:
Expand Down
Expand Up @@ -60,7 +60,7 @@


setup(name='PYTHON_EXT_NAME',
version='0.1.2',
version='0.1.201',
author='Bartolomeo Stellato, Goran Banjac',
description='This is the Python module for embedded OSQP: ' +
'Operator Splitting solver for Quadratic Programs.',
Expand Down
2 changes: 1 addition & 1 deletion interfaces/python/module/interface.py
@@ -1,5 +1,5 @@
"""
Python interface module for OSQP solver v0.1.2
Python interface module for OSQP solver v0.1.201
"""
from __future__ import print_function
from builtins import object
Expand Down
2 changes: 1 addition & 1 deletion interfaces/python/modulepurepy/_osqp.py
Expand Up @@ -358,7 +358,7 @@ class OSQP(object):
work - workspace
"""
def __init__(self):
self._version = "0.1.2"
self._version = "0.1.201"

@property
def version(self):
Expand Down
2 changes: 1 addition & 1 deletion interfaces/python/setup.py
Expand Up @@ -195,7 +195,7 @@ def build_extensions(self):
'osqppurepy']

setup(name='osqp',
version='0.1.2',
version='0.1.201',
author='Bartolomeo Stellato, Goran Banjac',
description='OSQP: The Operator Splitting QP Solver',
package_dir={'osqp': 'module',
Expand Down

0 comments on commit aa918e5

Please sign in to comment.