Skip to content

Commit

Permalink
Bump version: 0.6.0.dev6 → 0.6.0.dev7
Browse files Browse the repository at this point in the history
  • Loading branch information
bstellato committed Jun 30, 2019
1 parent ed1195e commit a31303a
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 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 = 0.6.0.dev6
current_version = 0.6.0.dev7
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 .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ matrix:
sudo: required
env:
global:
- OSQP_VERSION="0.6.0.dev6"
- OSQP_VERSION="0.6.0.dev7"
- OSQP_PACKAGE_NAME="OSQP"
- DEPS_DIR="${HOME}/deps"
# Bintray API key
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
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.dev6`.
The latest version is `0.6.0.dev7`.

## Citing OSQP

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ environment:
MINICONDA: C:\Miniconda
CMAKE_PROJECT: MinGW Makefiles
PYTHON_VERSION: 3.7
OSQP_VERSION: 0.6.0.dev6
OSQP_VERSION: 0.6.0.dev7
OSQP_PACKAGE_NAME: OSQP

init:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# sys.path.insert(0, os.path.abspath('.'))

# Set version for bumpversion
__version__ = "0.6.0.dev6"
__version__ = "0.6.0.dev7"

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

Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen.conf
Original file line number Diff line number Diff line change
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.dev6
PROJECT_NUMBER = 0.6.0.dev7

# 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
Original file line number Diff line number Diff line change
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.dev6>`_.
Precompiled platform-dependent shared and static libraries are available on `Bintray <https://bintray.com/bstellato/generic/OSQP/0.6.0.dev7>`_.
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
Original file line number Diff line number Diff line change
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.dev6/install_osqp.m');
websave('install_osqp.m', 'https://dl.bintray.com/bstellato/generic/OSQP/0.6.0.dev7/install_osqp.m');
install_osqp
Expand Down
2 changes: 1 addition & 1 deletion include/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ extern "C" {
/*******************
* OSQP Versioning *
*******************/
# define OSQP_VERSION ("0.6.0.dev6") /* string literals automatically null-terminated
# define OSQP_VERSION ("0.6.0.dev7") /* string literals automatically null-terminated
*/

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

0 comments on commit a31303a

Please sign in to comment.