Skip to content

Commit 16dddd8

Browse files
committed
0.3.2 just to fix documentation.
1 parent 994601e commit 16dddd8

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arraygen"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = ["José Manuel Barroso Galindo <theypsilon@gmail.com>"]
55
license = "MIT"
66
edition = "2021"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,16 @@ name: String,
8181

8282
You have to match the method name used in `gen_array` and `in_array` to include these fields in each generated method. So in this example, assuming `gen_strings` and `get_names` are both generated by `gen_array`, the former will get populated with the fields `id` and `name`, and the latter will get populated with the field `name`.
8383

84-
It is also possible to entirely omit the attribute `in_array` with the use of an `implicit_select_all` clause. Check the ["implicit_select_all" section in the documentation](https://docs.rs/arraygen/0.3.1/arraygen/derive.Arraygen.html#implicitly-selection-fields-by-their-types) to learn more about this possibility.
84+
It is also possible to entirely omit the attribute `in_array` with the use of an `implicit_select_all` clause. Check the ["implicit_select_all" section in the documentation](https://docs.rs/arraygen/0.3.2/arraygen/derive.Arraygen.html#implicitly-selection-fields-by-their-types) to learn more about this possibility.
8585

8686

8787
#### Generating arrays of Trait Objects:
8888

89-
Trait Objects are fully supported, check the [Trait Objects section in the documentation](https://docs.rs/arraygen/0.3.1/arraygen/derive.Arraygen.html#trait-objects) to see a few working examples.
89+
Trait Objects are fully supported, check the [Trait Objects section in the documentation](https://docs.rs/arraygen/0.3.2/arraygen/derive.Arraygen.html#trait-objects) to see a few working examples.
9090

9191
#### Implicit selection of Fields by their Types
9292

93-
With the clause `implicit_select_all`, you may select fields without using `in_array`, check [this section in the documentation](https://docs.rs/arraygen/0.3.1/arraygen/derive.Arraygen.html#implicitly-selection-fields-by-their-types) to see an example.
93+
With the clause `implicit_select_all`, you may select fields without using `in_array`, check [this section in the documentation](https://docs.rs/arraygen/0.3.2/arraygen/derive.Arraygen.html#implicitly-selection-fields-by-their-types) to see an example.
9494

9595

9696
## Documentation
@@ -103,7 +103,7 @@ With Cargo, you can add this line to your Cargo.toml:
103103

104104
```toml
105105
[dependencies]
106-
arraygen = "0.3.1"
106+
arraygen = "0.3.2"
107107
```
108108

109109
## About the Syntax

0 commit comments

Comments
 (0)