Skip to content

Commit f0c2334

Browse files
authoredApr 5, 2023
bump version to 3.2.3 (#248)
1 parent 27542a6 commit f0c2334

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
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.2
2+
current_version = 3.2.3
33

44
[bumpversion:file:README.md]
55

‎CITATION.cff

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ authors:
1010
- family-names: "Boyd"
1111
given-names: "Stephen"
1212
title: "SCS: Spltting Conic Solver"
13-
version: 3.2.2
14-
date-released: 2021
13+
version: 3.2.3
14+
date-released: 2023
1515
url: "https://github.com/cvxgrp/scs"
1616

1717
# Original SCS paper:

‎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.2)
9+
VERSION 3.2.3)
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.2`.
11+
large-scale convex cone problems. The current version is `3.2.3`.
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.2
41+
PROJECT_NUMBER = 3.2.3
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.2},
51+
title = {{SCS}: Splitting Conic Solver, version 3.2.3},
5252
howpublished = {\url{https://github.com/cvxgrp/scs}},
5353
month = nov,
5454
year = 2022

‎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.2"
27+
__version__ = "3.2.3"
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.2")
17+
#define SCS_VERSION ("3.2.3")
1818

1919
/* verbosity level */
2020
#ifndef VERBOSITY

0 commit comments

Comments
 (0)
Please sign in to comment.