Skip to content

Commit

Permalink
Bump version: 0.6.0.dev2 → 0.6.0.dev3
Browse files Browse the repository at this point in the history
  • Loading branch information
bstellato committed Jun 3, 2019
1 parent 7e7e9d7 commit 0e194b6
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0.dev2
current_version = 0.6.0.dev3
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -23,7 +23,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.6.0.dev2`.
The latest version is `0.6.0.dev3`.

## Citing OSQP

Expand Down
2 changes: 1 addition & 1 deletion ci/appveyor/deploy.cmd
Expand Up @@ -6,7 +6,7 @@ REM Needed to enable to define OSQP_BIN within the file
IF "%APPVEYOR_REPO_TAG%" == "true" (

REM Deply only on tags (releases)
set OSQP_VERSION="0.6.0.dev2"
set OSQP_VERSION="0.6.0.dev3"
set OSQP_PACKAGE_NAME="OSQP"
IF NOT "!OSQP_VERSION!"=="!OSQP_VERSION:dev=!" (
REM We are using a development version
Expand Down
2 changes: 1 addition & 1 deletion ci/travis/deploy.sh
@@ -1,7 +1,7 @@
#!/bin/bash
set -ev

OSQP_VERSION="0.6.0.dev2"
OSQP_VERSION="0.6.0.dev3"
OSQP_PACKAGE_NAME="OSQP"
if [[ ${OSQP_VERSION} == *"dev"* ]]; then
OSQP_PACKAGE_NAME="${OSQP_PACKAGE_NAME}-dev"
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -24,7 +24,7 @@
# sys.path.insert(0, os.path.abspath('.'))

# Set version for bumpversion
__version__ = "0.6.0.dev2"
__version__ = "0.6.0.dev3"

# -- 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.6.0.dev2
PROJECT_NUMBER = 0.6.0.dev3

# 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
2 changes: 1 addition & 1 deletion docs/get_started/CC++.rst
Expand Up @@ -6,7 +6,7 @@ CC++
Binaries
--------

Precompiled platform-dependent shared and static libraries are available on `Bintray <https://bintray.com/bstellato/generic/OSQP/0.6.0.dev2>`_.
Precompiled platform-dependent shared and static libraries are available on `Bintray <https://bintray.com/bstellato/generic/OSQP/0.6.0.dev3>`_.
We here assume that the user uncompressed each archive to :code:`OSQP_FOLDER`.

Each archive contains static :code:`OSQP_FOLDER/lib/libosqp.a` and shared :code:`OSQP_FOLER/lib/libosqp.ext` libraries to be used to interface OSQP to any C/C++ software.
Expand Down
2 changes: 1 addition & 1 deletion docs/get_started/matlab.rst
Expand Up @@ -12,7 +12,7 @@ To install the interface, just run the following commands:

.. code:: matlab
websave('install_osqp.m', 'https://dl.bintray.com/bstellato/generic/OSQP/0.6.0.dev2/install_osqp.m');
websave('install_osqp.m', 'https://dl.bintray.com/bstellato/generic/OSQP/0.6.0.dev3/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.6.0.dev2") /* string literals automatically null-terminated
# define OSQP_VERSION ("0.6.0.dev3") /* string literals automatically null-terminated
*/

/******************
Expand Down

0 comments on commit 0e194b6

Please sign in to comment.