Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump to 3.2.7 #287

Merged
merged 1 commit into from
Aug 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = 3.2.6
current_version = 3.2.7

[bumpversion:file:README.md]

Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors:
- family-names: "Boyd"
given-names: "Stephen"
title: "SCS: Spltting Conic Solver"
version: 3.2.6
version: 3.2.7
date-released: 2023
url: "https://github.com/cvxgrp/scs"

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.5)
project(
scs
LANGUAGES C
VERSION 3.2.6)
VERSION 3.2.7)

# Defines the CMAKE_INSTALL_LIBDIR, CMAKE_INSTALL_BINDIR and many other useful
# macros. See https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


SCS (`splitting conic solver`) is a numerical optimization package for solving
large-scale convex cone problems. The current version is `3.2.6`.
large-scale convex cone problems. The current version is `3.2.7`.

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

Expand Down
2 changes: 1 addition & 1 deletion docs/src/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "SCS"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 3.2.6
PROJECT_NUMBER = 3.2.7

# 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/src/citing/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ If you wish to cite SCS, please use any of the following:

@misc{scs,
author = {Brendan O'Donoghue and Eric Chu and Neal Parikh and Stephen Boyd},
title = {{SCS}: Splitting Conic Solver, version 3.2.6},
title = {{SCS}: Splitting Conic Solver, version 3.2.7},
howpublished = {\url{https://github.com/cvxgrp/scs}},
month = nov,
year = 2023
Expand Down
2 changes: 1 addition & 1 deletion docs/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = "Brendan O'Donoghue"

# The full version, including alpha/beta/rc tags
__version__ = "3.2.6"
__version__ = "3.2.7"

release = __version__
version = __version__
Expand Down
2 changes: 1 addition & 1 deletion include/glbopts.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ extern "C" {

/* SCS VERSION NUMBER ---------------------------------------------- */
/* string literals automatically null-terminated */
#define SCS_VERSION ("3.2.6")
#define SCS_VERSION ("3.2.7")

/* verbosity level */
#ifndef VERBOSITY
Expand Down
Loading