diff --git a/CHANGELOG.md b/CHANGELOG.md index d6d2990..649b97a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # Changelog +## [1.0.0](https://github.com/Net-Mist/tell-me-the-odds/compare/v1.0.1...v1.0.0) (2024-03-05) + + +### Features + +* add CI, list TODO ([8f22b9e](https://github.com/Net-Mist/tell-me-the-odds/commit/8f22b9eb1bdb9ed0b707d97ebfb5bdf250c4c0ca)) +* add front and webserver ([e307038](https://github.com/Net-Mist/tell-me-the-odds/commit/e3070387e5e1d059437c74632bf235580d9dd52a)) +* add github action to build and push docker images ([90726c0](https://github.com/Net-Mist/tell-me-the-odds/commit/90726c09341fbe6da72385b9944a5fd60316213f)) +* add working CLI ([ea5e687](https://github.com/Net-Mist/tell-me-the-odds/commit/ea5e687a27aaece8c3d02e9f9fbba4600eefc56a)) +* add working docker ([53f4157](https://github.com/Net-Mist/tell-me-the-odds/commit/53f415714222358b9799a45fc634d8718ac34e79)) +* release please ([1a6a78e](https://github.com/Net-Mist/tell-me-the-odds/commit/1a6a78ed2b98bbd252d77f27aebb74ca22f221de)) +* reorganize infrastructure services ([a634c2a](https://github.com/Net-Mist/tell-me-the-odds/commit/a634c2a4bd548c7534f21d7fe398d8749e8d3f94)) +* tracing ([630eda6](https://github.com/Net-Mist/tell-me-the-odds/commit/630eda6f94262579b379767e47c04b8b624fbb9e)) + + +### Bug Fixes + +* fix dockerhub push ([e4ff929](https://github.com/Net-Mist/tell-me-the-odds/commit/e4ff9290b6d875557eafe0b9616760d20d0f9faa)) +* reorganize front elements ([af3c699](https://github.com/Net-Mist/tell-me-the-odds/commit/af3c69913e46cb438ecf3fdfb5d7757f03ab3439)) + + +### Performance Improvements + +* improve `compute_probability_of_success` algorithm ([abec26f](https://github.com/Net-Mist/tell-me-the-odds/commit/abec26f759e776bce426c59ba6ddb793713968e0)) + + +### Miscellaneous Chores + +* release 1.0.0 ([981b53d](https://github.com/Net-Mist/tell-me-the-odds/commit/981b53dd954986826e5f7e28e261aa407b1565c8)) + ## [1.0.1](https://github.com/Net-Mist/tell-me-the-odds/compare/v1.0.0...v1.0.1) (2024-01-20) diff --git a/Cargo.lock b/Cargo.lock index 7814164..6f839e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -981,7 +981,7 @@ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" [[package]] name = "millennium_falcon" -version = "1.0.1" +version = "1.0.0" dependencies = [ "actix-web", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index c82c509..cc20425 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "millennium_falcon" -version = "1.0.1" +version = "1.0.0" license = "MIT" edition = "2021" default-run = "millennium_falcon"