Skip to content

Commit e45eb4d

Browse files
authored
Bump to moors 0.2.9 (#266)
1 parent c422f6b commit e45eb4d

File tree

12 files changed

+14
-349
lines changed

12 files changed

+14
-349
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,8 @@ moo-rs/
4545

4646
### Installation
4747

48-
```toml
49-
[dependencies]
50-
moors = "0.2.3"
48+
```sh
49+
cargo add moors
5150
```
5251

5352
### Quickstart

moors/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

moors/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "moors"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
edition = "2024"
55
authors = ["Andrés Sandoval Abarca <andres.sndbrca@gmail.com>"]
66
description = "Solving multi-objective optimization problems using genetic algorithms."

moors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
```toml
2323
[dependencies]
24-
moors = "0.2.8"
24+
moors = "0.2.9"
2525
```
2626

2727
## Quickstart

moors/moors_macros/Cargo.lock

Lines changed: 0 additions & 47 deletions
This file was deleted.

moors/moors_macros/Cargo.toml

Lines changed: 0 additions & 15 deletions
This file was deleted.

moors/moors_macros/LICENSE

Lines changed: 0 additions & 1 deletion
This file was deleted.

moors/moors_macros/README.md

Lines changed: 0 additions & 90 deletions
This file was deleted.

moors/moors_macros/src/lib.rs

Lines changed: 0 additions & 187 deletions
This file was deleted.

pymoors/docs/development/setup_algorithm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Creating a new algorithm in `moors` is relatively simple. We use [NSGA-II](../us
2929

3030
### Survival and Selection Operators Without Arguments
3131

32-
The following example shows the implementation of the `NSGA-II` algorithm using the macro `create_algorithm_and_builder`:
32+
The following example shows the implementation of the `NSGA-II` algorithm using the macro `define_algorithm_and_builder`:
3333

3434
```Rust
3535
use crate::{

0 commit comments

Comments
 (0)