Skip to content

Commit f7bde3e

Browse files
committed
Bump version: 0.7.7 → 0.7.8
1 parent 220e1a9 commit f7bde3e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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.7
2+
current_version = 0.7.8
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.7"
4+
version = "0.7.8"
55

66
[deps]
77
AMD = "14f7f29c-3bd6-536c-9a0b-7339e30b5a3e"

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.7-blue.svg"></a>
13+
<a href="https://github.com/oxfordcontrol/COSMO.jl/releases"><img src="https://img.shields.io/badge/Release-v0.7.8-blue.svg"></a>
1414
</p>
1515

1616
<p align="center">

src/COSMO.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function __init__()
2121
end
2222

2323
function version()
24-
v"0.7.7"
24+
v"0.7.8"
2525
end
2626

2727

src/printing.jl

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

9-
println("-"^66 * "\n" * " "^10 * "COSMO v0.7.7 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2020\n" * "-"^66 * "\n")
9+
println("-"^66 * "\n" * " "^10 * "COSMO v0.7.8 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2020\n" * "-"^66 * "\n")
1010

1111
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)")
1212
for (iii, set) in enumerate(sort(ws.p.C.sets, by = x -> -x.dim))

0 commit comments

Comments
 (0)