Skip to content

Commit

Permalink
Fix release stuff (#11)
Browse files Browse the repository at this point in the history
* Fix wrong documentation link

* Update CHANGELOG.md

* Add factori-imp-impl .gitignore

* Make link consistent

* Note that we also fixed clippy warnings
  • Loading branch information
GriffinHeart authored Sep 3, 2024
1 parent 8a8a45b commit b5e84d6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 24 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/Cargo.lock
/factorio-impl/Cargo.lock
/factorio-impl/target/
/factori-imp-impl/Cargo.lock
/factori-imp-impl/target/
/target
/rls
**/*.rs.bk
Expand Down
27 changes: 7 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,12 @@
# Changelog

## 1.1.0
## 0.9.1

- Minimum Rust version: At least 1.45.0.
- Remove use of proc-macro-hack.
- fixes wrong doc link in readme

## 1.0.0
## 0.9.0

Breaking:

- Rename `feature` to `mixin`.
- Change the precedence of `mixin` in `create!()` the one provided last should take precedence.

## v0.1.1

- Allow importing factories from other modules ([#1](https://github.com/mjkillough/factori/pull/1) by @danbruder)

## v0.1.0

- Re-write to be a proc-macro.

## v0.0.3

- Initial version based on `macro_rules!` macro.
- First release
- Adds `create_vec!`
- Adds transient attributes
- Fixes clippy warnings
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ factori-imp works on stable Rust >=1.45.
## Differences with factori

- Transient attributes as first class citizens see [tests/transient.rs](https://github.com/GriffinHeart/factori-imp/blob/main/tests/transient.rs)
- Adds `create_vec!` macro [see tests/create_vec.rs](https://github.com/GriffinHeart/factori-imp/blob/main/tests/create_vec.rs)
- Adds `create_vec!` macro see [tests/create_vec.rs](https://github.com/GriffinHeart/factori-imp/blob/main/tests/create_vec.rs)
- Fixes all clippy warnings due to usage of the macros

## Documentation

[https://docs.rs/factori-imp/latest/factori/](https://docs.rs/factori-imp/latest/factori/)
[https://docs.rs/factori-imp/latest/factori_imp/](https://docs.rs/factori-imp/latest/factori_imp/)

## Example

Expand Down

0 comments on commit b5e84d6

Please sign in to comment.