Skip to content

Commit 2b9b03d

Browse files
authored
bump to 3.2.6 (#281)
1 parent bd991fa commit 2b9b03d

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.2.5
2+
current_version = 3.2.6
33

44
[bumpversion:file:README.md]
55

CITATION.cff

+1-1
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.2.5
13+
version: 3.2.6
1414
date-released: 2023
1515
url: "https://github.com/cvxgrp/scs"
1616

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.5)
66
project(
77
scs
88
LANGUAGES C
9-
VERSION 3.2.5)
9+
VERSION 3.2.6)
1010

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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.2.5`.
11+
large-scale convex cone problems. The current version is `3.2.6`.
1212

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

docs/src/Doxyfile

+1-1
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.2.5
41+
PROJECT_NUMBER = 3.2.6
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

+1-1
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.2.5},
51+
title = {{SCS}: Splitting Conic Solver, version 3.2.6},
5252
howpublished = {\url{https://github.com/cvxgrp/scs}},
5353
month = nov,
5454
year = 2023

docs/src/conf.py

+1-1
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.2.5"
27+
__version__ = "3.2.6"
2828

2929
release = __version__
3030
version = __version__

include/glbopts.h

+1-1
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.2.5")
17+
#define SCS_VERSION ("3.2.6")
1818

1919
/* verbosity level */
2020
#ifndef VERBOSITY

0 commit comments

Comments
 (0)