Skip to content

Commit 70b48f9

Browse files
committed
Release argmin v0.6.0 and argmin-math v0.1.0
1 parent 0f97e99 commit 70b48f9

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## argmin-math [Unreleased]
1111

12-
## [argmin v0.6.0-rc.2] and [argmin-math v0.1.0-rc.1] 2022-07-31
12+
## [argmin v0.6.0] and [argmin-math v0.1.0] 2022-08-09
1313

1414
This is a rather large release with many (breaking) changes.
1515

@@ -168,5 +168,5 @@ This is a rather large release with many (breaking) changes.
168168
For older versions please see the Git history.
169169

170170
[Unreleased]: https://github.com/argmin-rs/argmin/compare/v0.5.1...HEAD
171-
[argmin v0.6.0-rc.1]: https://github.com/argmin-rs/argmin/compare/v0.5.1...argmin_v0.6.0-rc.2
172-
[argmin-math v0.1.0-rc.1]: https://github.com/argmin-rs/argmin/compare/v0.5.1...argmin_v0.6.0-rc.1
171+
[argmin v0.6.0]: https://github.com/argmin-rs/argmin/compare/v0.5.1...argmin_v0.6.0
172+
[argmin-math v0.1.0]: https://github.com/argmin-rs/argmin/compare/v0.5.1...argmin_v0.6.0

LICENSE-APACHE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ APPENDIX: How to apply the Apache License to your work.
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright 2022 Stefan Kroboth
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

argmin-math/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "argmin-math"
3-
version = "0.1.0-rc.1"
3+
version = "0.1.0"
44
authors = ["Stefan Kroboth <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

argmin/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "argmin"
3-
version = "0.6.0-rc.2"
3+
version = "0.6.0"
44
authors = ["Stefan Kroboth <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -19,16 +19,16 @@ anyhow = "1.0"
1919
instant = {version = "0.1" }
2020
paste = "1"
2121
num-traits = { version = "0.2" }
22-
rand = { version = "0.8.3" }
22+
rand = { version = "0.8.5" }
2323
rand_xoshiro = { version = "0.6.0" }
2424
thiserror = "1.0"
25-
argmin-math = { path = "../argmin-math", version = "0.1.0-rc.1", default-features = false, features = ["primitives"] }
25+
argmin-math = { path = "../argmin-math", version = "0.1.0", default-features = false, features = ["primitives"] }
2626
# optional
2727
bincode = { version = "1.3.3", optional = true }
2828
ctrlc = { version = "3.1.2", optional = true }
2929
getrandom = { version = "0.2", features = ["js"], optional = true }
3030
gnuplot = { version = "0.0.37", optional = true }
31-
rayon = { version = "1.5.2", optional = true }
31+
rayon = { version = "1.5.3", optional = true }
3232
serde = { version = "1.0", features = ["derive", "rc"], optional = true }
3333
serde_json = { version = "1.0", optional = true }
3434
slog = { version = "2.4.1", optional = true, features = ["dynamic-keys"] }

0 commit comments

Comments
 (0)