Skip to content

Commit 2cd1497

Browse files
committed
Set version back to 0.5.0
1 parent 8c1f5d3 commit 2cd1497

File tree

10 files changed

+34
-34
lines changed

10 files changed

+34
-34
lines changed

Diff for: Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ edition = "2021"
77
rust-version = "1.83.0"
88

99
[workspace.dependencies]
10-
malachite-base = { version = "0.5.1", path = 'malachite-base' }
11-
malachite-nz = { version = "0.5.1", path = 'malachite-nz', default_features = false }
12-
malachite-q = { version = "0.5.1", path = 'malachite-q' }
13-
malachite-float = { version = "0.5.1", path = 'malachite-float' }
10+
malachite-base = { version = "0.5.0", path = 'malachite-base' }
11+
malachite-nz = { version = "0.5.0", path = 'malachite-nz', default_features = false }
12+
malachite-q = { version = "0.5.0", path = 'malachite-q' }
13+
malachite-float = { version = "0.5.0", path = 'malachite-float' }
1414

1515
[profile.release]
1616
lto = "fat"

Diff for: docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ Malachite uses `no_std`, unless the `random`, `test_build`, or `bin_build` featu
5555
To use Malachite, add the following to your project's `Cargo.toml` file:
5656
```yaml
5757
[dependencies.malachite]
58-
version = "0.5.1"
58+
version = "0.5.0"
5959
```
6060

6161
By default, all of Malachite's features are included, but you can opt out of some of them. For
6262
example, if you want to use `Natural` and `Integer` but not `Rational`, you can instead use
6363
```yaml
6464
[dependencies.malachite]
65-
version = "0.5.1"
65+
version = "0.5.0"
6666
default-features = false
6767
features = [ "naturals_and_integers" ]
6868
```

Diff for: malachite-base/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "malachite-base"
3-
version = "0.5.1"
3+
version = "0.5.0"
44
authors = ["Mikhail Hogrefe <mikhailhogrefe@gmail.com>"]
55
rust-version.workspace = true
66
edition.workspace = true

Diff for: malachite-bigint/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "malachite-bigint"
3-
version = "0.5.1"
3+
version = "0.5.0"
44
authors = ["Steve Shi <shikangzhi@gmail.com>"]
55
rust-version.workspace = true
66
edition.workspace = true
@@ -9,8 +9,8 @@ description = "A drop-in num-bigint replacement based on malachite"
99
repository = "https://github.com/mhogrefe/malachite"
1010

1111
[dependencies]
12-
malachite-base = { version = "0.5.1", path = "../malachite-base" }
13-
malachite-nz = { version = "0.5.1", path = "../malachite-nz" }
12+
malachite-base = { version = "0.5.0", path = "../malachite-base" }
13+
malachite-nz = { version = "0.5.0", path = "../malachite-nz" }
1414

1515
num-traits = { version = "0.2.19", default-features = false, features = ["i128"] }
1616
num-integer = { version = "0.1.46", default-features = false, features = ["i128"] }

Diff for: malachite-criterion-bench/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "malachite-criterion-bench"
3-
version = "0.5.1"
3+
version = "0.5.0"
44
authors = ["Mikhail Hogrefe <mikhailhogrefe@gmail.com>"]
55
autobenches = false
66
rust-version.workspace = true
77
edition.workspace = true
88

99
[dependencies]
10-
malachite-base = { version = "0.5.1", path = "../malachite-base" }
11-
malachite-nz = { version = "0.5.1", default-features = false, path = "../malachite-nz" }
10+
malachite-base = { version = "0.5.0", path = "../malachite-base" }
11+
malachite-nz = { version = "0.5.0", default-features = false, path = "../malachite-nz" }
1212
num = "0.4.1"
1313
rug = { version = "1.21.0", default-features = false, features = ["integer", "serde"] }
1414

Diff for: malachite-float/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "malachite-float"
3-
version = "0.5.1"
3+
version = "0.5.0"
44
authors = ["Mikhail Hogrefe <mikhailhogrefe@gmail.com>"]
55
rust-version.workspace = true
66
edition.workspace = true
@@ -22,9 +22,9 @@ path = "src/bin.rs"
2222

2323
[dependencies]
2424
itertools = { version = "0.11.0", default-features = false, features = ["use_alloc"] }
25-
malachite-base = { version = "0.5.1", default-features = false, path = "../malachite-base" }
26-
malachite-nz = { version = "0.5.1", default-features = false, features = ["float_helpers"], path = "../malachite-nz" }
27-
malachite-q = { version = "0.5.1", default-features = false, path = "../malachite-q" }
25+
malachite-base = { version = "0.5.0", default-features = false, path = "../malachite-base" }
26+
malachite-nz = { version = "0.5.0", default-features = false, features = ["float_helpers"], path = "../malachite-nz" }
27+
malachite-q = { version = "0.5.0", default-features = false, path = "../malachite-q" }
2828
serde = { version = "1.0.188", optional = true, default-features = false, features = ["alloc", "derive"] }
2929

3030
serde_json = { version = "1.0.105", optional = true }

Diff for: malachite-nz/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "malachite-nz"
3-
version = "0.5.1"
3+
version = "0.5.0"
44
authors = ["Mikhail Hogrefe <mikhailhogrefe@gmail.com>"]
55
rust-version.workspace = true
66
edition.workspace = true
@@ -23,7 +23,7 @@ path = "src/bin.rs"
2323
[dependencies]
2424
itertools = { version = "0.11.0", default-features = false, features = ["use_alloc"] }
2525
libm = { version = "0.2.8", default-features = false }
26-
malachite-base = { version = "0.5.1", default-features = false, path = "../malachite-base" }
26+
malachite-base = { version = "0.5.0", default-features = false, path = "../malachite-base" }
2727
serde = { version = "1.0.188", optional = true, default-features = false, features = ["alloc", "derive"] }
2828

2929
indoc = { version = "2.0.4", optional = true}

Diff for: malachite-q/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "malachite-q"
3-
version = "0.5.1"
3+
version = "0.5.0"
44
authors = ["Mikhail Hogrefe <mikhailhogrefe@gmail.com>"]
55
rust-version.workspace = true
66
edition.workspace = true
@@ -22,8 +22,8 @@ path = "src/bin.rs"
2222

2323
[dependencies]
2424
itertools = { version = "0.11.0", default-features = false, features = ["use_alloc"] }
25-
malachite-base = { version = "0.5.1", default-features = false, path = "../malachite-base" }
26-
malachite-nz = { version = "0.5.1", default-features = false, path = "../malachite-nz" }
25+
malachite-base = { version = "0.5.0", default-features = false, path = "../malachite-base" }
26+
malachite-nz = { version = "0.5.0", default-features = false, path = "../malachite-nz" }
2727
serde = { version = "1.0.188", optional = true, default-features = false, features = ["alloc", "derive"] }
2828

2929
serde_json = { version = "1.0.105", optional = true }

Diff for: malachite/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "malachite"
3-
version = "0.5.1"
3+
version = "0.5.0"
44
authors = ["Mikhail Hogrefe <mikhailhogrefe@gmail.com>"]
55
rust-version.workspace = true
66
edition.workspace = true
@@ -13,10 +13,10 @@ keywords = ["mathematics", "math", "numerics", "bignum"]
1313
categories = ["mathematics"]
1414

1515
[dependencies]
16-
malachite-base = { version = "0.5.1", default-features = false, path = "../malachite-base" }
17-
malachite-nz = { version = "0.5.1", default-features = false, optional = true, path = "../malachite-nz" }
18-
malachite-q = { version = "0.5.1", default-features = false, optional = true, path = "../malachite-q" }
19-
malachite-float = { version = "0.5.1", default-features = false, optional = true, path = "../malachite-float" }
16+
malachite-base = { version = "0.5.0", default-features = false, path = "../malachite-base" }
17+
malachite-nz = { version = "0.5.0", default-features = false, optional = true, path = "../malachite-nz" }
18+
malachite-q = { version = "0.5.0", default-features = false, optional = true, path = "../malachite-q" }
19+
malachite-float = { version = "0.5.0", default-features = false, optional = true, path = "../malachite-float" }
2020
serde = { version = "1.0.188", optional = true, features = ["derive"] }
2121
embed-doc-image = { version = "0.1.4", optional = true }
2222

0 commit comments

Comments
 (0)