generated from ProcyOS/rust-template
0.1.1: prepare release
This commit is contained in:
parent
90d36ddc34
commit
cb433fc489
4 changed files with 10 additions and 7 deletions
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.1.1] - 2024-09-09
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Code for N-choose-k
|
- 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
|
||||||
- Added implementations for incomplete gamma functions, converted from Math.Net
|
- 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
|
[0.1.0]: https://git.chir.rs/ProcyOS/extra_math/releases/tag/v0.1.0
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -10,7 +10,7 @@ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "extra-math"
|
name = "extra-math"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"libm",
|
"libm",
|
||||||
"num-traits",
|
"num-traits",
|
||||||
|
|
|
@ -22,7 +22,7 @@ args @ {
|
||||||
workspaceSrc,
|
workspaceSrc,
|
||||||
ignoreLockHash,
|
ignoreLockHash,
|
||||||
}: let
|
}: let
|
||||||
nixifiedLockHash = "9a1ee9305c225b74d8dc742d0cdc3b6fa8f016ddd5427a73b6ec00ee90d7f0f7";
|
nixifiedLockHash = "c2eb36fad35932f80d6eec4c083c16822de79c56cace0639af21e9933c2ca6f9";
|
||||||
workspaceSrc =
|
workspaceSrc =
|
||||||
if args.workspaceSrc == null
|
if args.workspaceSrc == null
|
||||||
then ./.
|
then ./.
|
||||||
|
@ -59,7 +59,7 @@ in
|
||||||
in {
|
in {
|
||||||
cargo2nixVersion = "0.11.0";
|
cargo2nixVersion = "0.11.0";
|
||||||
workspace = {
|
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 {
|
"registry+https://github.com/rust-lang/crates.io-index".autocfg."1.3.0" = overridableMkRustCrate (profileName: rec {
|
||||||
name = "autocfg";
|
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";
|
name = "extra-math";
|
||||||
version = "0.1.0";
|
version = "0.1.1";
|
||||||
registry = "unknown";
|
registry = "unknown";
|
||||||
src = fetchCrateLocal workspaceSrc;
|
src = fetchCrateLocal workspaceSrc;
|
||||||
features = builtins.concatLists [
|
features = builtins.concatLists [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "extra-math"
|
name = "extra-math"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Charlotte 🦝 Delenk <lotte@chir.rs>"]
|
authors = ["Charlotte 🦝 Delenk <lotte@chir.rs>"]
|
||||||
description = "Additional math functions not found in the standard library or libm"
|
description = "Additional math functions not found in the standard library or libm"
|
||||||
|
|
Loading…
Reference in a new issue