Skip to content

Commit 1cf5cbc

Browse files
committed
bump to 3.1.0
1 parent 6500ff8 commit 1cf5cbc

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0.0
2+
current_version = 3.1.0
33

44
[bumpversion:file:README.md]
55

@@ -14,3 +14,4 @@ current_version = 3.0.0
1414
[bumpversion:file:docs/src/Doxyfile]
1515

1616
[bumpversion:file:docs/src/citing/index.rst]
17+

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors:
1010
- family-names: "Boyd"
1111
given-names: "Stephen"
1212
title: "SCS: Spltting Conic Solver"
13-
version: 3.0.0
13+
version: 3.1.0
1414
date-released: 2021
1515
url: "https://github.com/cvxgrp/scs"
1616

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.5)
55

66
project(scs
77
LANGUAGES C
8-
VERSION 3.0.0)
8+
VERSION 3.1.0)
99

1010
# Defines the CMAKE_INSTALL_LIBDIR, CMAKE_INSTALL_BINDIR and many other useful macros.
1111
# See https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99

1010
SCS (`splitting conic solver`) is a numerical optimization package for solving
11-
large-scale convex cone problems. The current version is `3.0.0`.
11+
large-scale convex cone problems. The current version is `3.1.0`.
1212

1313
The full documentation is available [here](https://www.cvxgrp.org/scs/).

docs/src/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "SCS"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 3.0.0
41+
PROJECT_NUMBER = 3.1.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

docs/src/citing/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ If you wish to cite SCS, please use any of the following:
4848

4949
@misc{scs,
5050
author = {Brendan O'Donoghue and Eric Chu and Neal Parikh and Stephen Boyd},
51-
title = {{SCS}: Splitting Conic Solver, version 3.0.0},
51+
title = {{SCS}: Splitting Conic Solver, version 3.1.0},
5252
howpublished = {\url{https://github.com/cvxgrp/scs}},
5353
month = nov,
5454
year = 2021

docs/src/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
author = "Brendan O'Donoghue"
2525

2626
# The full version, including alpha/beta/rc tags
27-
__version__ = "3.0.0"
27+
__version__ = "3.1.0"
2828

2929
release = __version__
3030
version = __version__

include/glbopts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ extern "C" {
1414

1515
/* SCS VERSION NUMBER ---------------------------------------------- */
1616
/* string literals automatically null-terminated */
17-
#define SCS_VERSION ("3.0.0")
17+
#define SCS_VERSION ("3.1.0")
1818

1919
/* verbosity level */
2020
#ifndef VERBOSITY

0 commit comments

Comments
 (0)