0.1.1: prepare release
All checks were successful
Hydra x86_64-linux.packages.extra-math Hydra build #3374 of procyos:extra_math:x86_64-linux.packages.extra-math
Hydra x86_64-linux.checks.extra-math Hydra build #3375 of procyos:extra_math:x86_64-linux.checks.extra-math

This commit is contained in:
Charlotte 🦝 Delenk 2024-09-09 12:17:09 +02:00
parent 90d36ddc34
commit cb433fc489
4 changed files with 10 additions and 7 deletions

View file

@ -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

2
Cargo.lock generated
View file

@ -10,7 +10,7 @@ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
[[package]]
name = "extra-math"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"libm",
"num-traits",

View file

@ -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 [

View file

@ -1,6 +1,6 @@
[package]
name = "extra-math"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Charlotte 🦝 Delenk <lotte@chir.rs>"]
description = "Additional math functions not found in the standard library or libm"