From 0a4ba3c0358dca5431980e2cb47ab54d60d9a325 Mon Sep 17 00:00:00 2001 From: Abhijit Roy Date: Sat, 2 Nov 2024 15:27:12 +0530 Subject: [PATCH] Add changelog --- CHANGELOG.md | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7966136 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,64 @@ +# Changelog + +## v1.0.0 + +* Merge pull request #10 from abhi3700/users +Add Users (with tests) module +* Add Users module with tests + +* Add users.http + +* Merge pull request #9 from abhi3700/quotes +Add quotes with tests +* Add quotes with tests + +* Merge pull request #8 from abhi3700/comments +Add comments module (with tests) +* Add comments module (with tests) + +* Merge pull request #7 from abhi3700/posts +Add Posts module (with tests) +* Complete posts module along with tests + +* Add fns to posts, code refactoring + +* Merge pull request #6 from abhi3700/recipes +Add Recipes module +* Add recipes (with tests) module + +* Add to recipes.http + +* Add recipes.http + +* Merge pull request #5 from abhi3700/code-refactoring +Code refactoring +* Add README + +* Fix clippy error +const variable with interior mutability is fixed by changing to static. + +* Create rust.yml for CI/CD + +* Merge pull request #4 from abhi3700/carts +Add carts (with tests) module +* Add carts (with tests) module + +* Merge pull request #3 from abhi3700/products +Add Products (with tests) module +* Add products module & its tests, code improve. via static -> const + +- Using const is a compile-time constant & lighter than static type. So, using this. + +* Add Default directly & remove new() fn + +* Merge pull request #2 from abhi3700/todos +Add todos module & its tests +* Add todos module & its tests + +* Merge pull request #1 from abhi3700/auth +Add auth module & its tests +* Add auth module & its tests + +* Add project boilerplate + +* Initial commit