diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a64b54..34a952a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1] - 2024-09-09 + ### Added - Code for N-choose-k @@ -15,5 +17,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added implementations for incomplete gamma functions, converted from Math.Net -[Unreleased]: https://git.chir.rs/ProcyOS/extra_math/compare/v0.1.0...main +[Unreleased]: https://git.chir.rs/ProcyOS/extra_math/compare/v0.1.1...main +[0.1.1]: https://git.chir.rs/ProcyOS/extra_math/releases/tag/v0.1.1 [0.1.0]: https://git.chir.rs/ProcyOS/extra_math/releases/tag/v0.1.0 \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 2372726..372c638 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" [[package]] name = "extra-math" -version = "0.1.0" +version = "0.1.1" dependencies = [ "libm", "num-traits", diff --git a/Cargo.nix b/Cargo.nix index 713115c..16262db 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -22,7 +22,7 @@ args @ { workspaceSrc, ignoreLockHash, }: let - nixifiedLockHash = "9a1ee9305c225b74d8dc742d0cdc3b6fa8f016ddd5427a73b6ec00ee90d7f0f7"; + nixifiedLockHash = "c2eb36fad35932f80d6eec4c083c16822de79c56cace0639af21e9933c2ca6f9"; workspaceSrc = if args.workspaceSrc == null then ./. @@ -59,7 +59,7 @@ in in { cargo2nixVersion = "0.11.0"; workspace = { - extra-math = rustPackages.unknown.extra-math."0.1.0"; + extra-math = rustPackages.unknown.extra-math."0.1.1"; }; "registry+https://github.com/rust-lang/crates.io-index".autocfg."1.3.0" = overridableMkRustCrate (profileName: rec { name = "autocfg"; @@ -71,9 +71,9 @@ in }; }); - "unknown".extra-math."0.1.0" = overridableMkRustCrate (profileName: rec { + "unknown".extra-math."0.1.1" = overridableMkRustCrate (profileName: rec { name = "extra-math"; - version = "0.1.0"; + version = "0.1.1"; registry = "unknown"; src = fetchCrateLocal workspaceSrc; features = builtins.concatLists [ diff --git a/Cargo.toml b/Cargo.toml index 5bd09aa..d0c9732 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "extra-math" -version = "0.1.0" +version = "0.1.1" edition = "2021" authors = ["Charlotte 🦝 Delenk "] description = "Additional math functions not found in the standard library or libm"