diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f87b003 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,89 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [0.0.2] - 2024-05-22 + +### ๐Ÿ› Bug Fixes + +- Fixed computation of distance between curves +- Added missing sign + +### ๐Ÿ“š Documentation + +- Added some more shields to the readme + +### ๐Ÿงช Testing + +- Added test with threefold with larger h11 + +### โš™๏ธ Miscellaneous Tasks + +- Format code +- Clippy fixes +- Added repo url to toml files +- Added cliff.toml + +## [0.0.1] - 2024-05-19 + +### ๐Ÿš€ Features + +- Initial commit +- Added factorials module +- Added semigroup module +- Added cache module +- Added polynomial module +- Added more constructors for semigroups +- Added pretty print polynomials +- Re-export main structs at the root +- Added misc module +- Added fundamental_period module +- Added instanton module +- Added clear function to polynomials +- Added series_inversion module +- Added hkty module +- Added python wrapper + +### ๐Ÿ› Bug Fixes + +- Fixed cloning, power, and reciprocal functions of polynomials +- Fixed some polynomial functions and added more tests +- Made FundamentalPeriod fields public +- Fixed small issues +- Fixed wrong values for the number of indices of instanton corrections +- Fixed typo in trait implementation +- Fixed a couple of things not being computed properly + +### ๐Ÿšœ Refactor + +- Renamed cache to pool +- Cleaned up trait requirements by using a supertrait + +### ๐Ÿ“š Documentation + +- Small readme fixes +- Updated warning message +- Small documentation improvements + +### ๐Ÿงช Testing + +- Added integration tests + +### โš™๏ธ Miscellaneous Tasks + +- Renamed factorial module for consistency +- Added CI +- Added dependabot +- Renamed project +- Switch to dual license +- Apply clippy suggestions +- Renamed pool test for consistency +- Minor cleanup +- Apply clippy suggestions +- Removed binaries for now +- Updated .gitignore +- Build and test crate on multiple OSs +- Test Python package +- Added deploy workflow + + diff --git a/Cargo.toml b/Cargo.toml index 77becd3..6e9f5e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cygv" -version = "0.0.1" +version = "0.0.2" description = "Compute GV and GW invariants of CY manifolds." authors = ["Andres Rios Tascon"] edition = "2021"