Skip to content

Commit ac2593b

Browse files
committed
Bump version: 0.7.3 → 0.7.4
1 parent 6626c6d commit ac2593b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.7.3
2+
current_version = 0.7.4
33
commit = True
44
tag = False
55

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "COSMO"
22
uuid = "1e616198-aa4e-51ec-90a2-23f7fbd31d8d"
33
authors = ["Michael <[email protected]>"]
4-
version = "0.7.3"
4+
version = "0.7.4"
55

66
[deps]
77
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<a href="https://codecov.io/gh/oxfordcontrol/COSMO.jl"><img src="https://codecov.io/gh/oxfordcontrol/COSMO.jl/branch/master/graph/badge.svg"></a>
1111
<a href="https://oxfordcontrol.github.io/COSMO.jl/stable"><img src="https://img.shields.io/badge/Documentation-stable-purple.svg"></a>
1212
<a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"></a>
13-
<a href="https://github.com/oxfordcontrol/COSMO.jl/releases"><img src="https://img.shields.io/badge/Release-v0.7.3-blue.svg"></a>
13+
<a href="https://github.com/oxfordcontrol/COSMO.jl/releases"><img src="https://img.shields.io/badge/Release-v0.7.4-blue.svg"></a>
1414
</p>
1515

1616
<p align="center">

src/printing.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function print_header(ws::COSMO.Workspace{T}) where {T <: AbstractFloat}
55
settings = ws.settings
66
settings.scaling > 0 ? scaling_status = "on" : scaling_status = "off"
77

8-
println("-"^66 * "\n" * " "^10 * "COSMO v0.7.3 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2020\n" * "-"^66 * "\n")
8+
println("-"^66 * "\n" * " "^10 * "COSMO v0.7.4 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2020\n" * "-"^66 * "\n")
99

1010
println("Problem: x ∈ R^{$(n)},\n constraints: A ∈ R^{$(m)x$(n)} ($(count(!iszero, ws.p.A)) nnz),\n matrix size to factor: $(n + m)x$(n + m),\n Floating-point precision: $(T)")
1111
for (iii, set) in enumerate(sort(ws.p.C.sets, by = x -> -x.dim))

0 commit comments

Comments
 (0)