Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogrefe committed May 31, 2024
1 parent f7ba756 commit b76f64e
Show file tree
Hide file tree
Showing 24 changed files with 88 additions and 161 deletions.
165 changes: 50 additions & 115 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ members = ['malachite', 'malachite-base', 'malachite-float', 'malachite-nz', 'ma
resolver = "2"

[workspace.dependencies]
malachite-base = { version = "0.4.9", path = 'malachite-base' }
malachite-nz = { version = "0.4.9", path = 'malachite-nz', default_features = false }
malachite-q = { version = "0.4.9", path = 'malachite-q' }
malachite-float = { version = "0.4.9", path = 'malachite-float' }
malachite-base = { version = "0.4.10", path = 'malachite-base' }
malachite-nz = { version = "0.4.10", path = 'malachite-nz', default_features = false }
malachite-q = { version = "0.4.10", path = 'malachite-q' }
malachite-float = { version = "0.4.10", path = 'malachite-float' }

[profile.release]
lto = true
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ Malachite uses `no_std`, unless the `random`, `test_build`, or `bin_build` featu
To use Malachite, add the following to your project's `Cargo.toml` file:
```yaml
[dependencies.malachite]
version = "0.4.9"
version = "0.4.10"
```

By default, all of Malachite's features are included, but you can opt out of some of them. For
example, if you want to use `Natural` and `Integer` but not `Rational`, you can instead use
```yaml
[dependencies.malachite]
version = "0.4.9"
version = "0.4.10"
default-features = false
features = [ "naturals_and_integers" ]
```
Expand Down
2 changes: 1 addition & 1 deletion malachite-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "malachite-base"
version = "0.4.9"
version = "0.4.10"
authors = ["Mikhail Hogrefe <[email protected]>"]
rust-version = "1.61.0"
edition = "2021"
Expand Down
1 change: 0 additions & 1 deletion malachite-base/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@
clippy::range_plus_one,
clippy::redundant_else,
clippy::semicolon_if_nothing_returned,
clippy::borrow_as_ptr,
clippy::cloned_instead_of_copied,
clippy::flat_map_option,
clippy::unnecessary_wraps,
Expand Down
1 change: 0 additions & 1 deletion malachite-base/tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
clippy::range_plus_one,
clippy::redundant_else,
clippy::semicolon_if_nothing_returned,
clippy::borrow_as_ptr,
clippy::cloned_instead_of_copied,
clippy::flat_map_option,
clippy::unnecessary_wraps,
Expand Down
Loading

0 comments on commit b76f64e

Please sign in to comment.