7 Commits

Author SHA1 Message Date
t 8518ea1bd1 chore: bump version (v1.0.2) 2026-02-15 12:57:34 +01:00
t 5c81f35250 feat: enable clippy nursery and fix 2026-02-15 12:52:04 +01:00
t 02ce2097fb feat: enable clippy pedantic and fix 2026-02-15 12:52:03 +01:00
t 36a2e0e9e2 style: fix clippy 2026-02-15 12:52:02 +01:00
t b4f5d73cbd feat: add #[must_use] to all functions 2026-02-15 12:52:01 +01:00
t 303028dc10 feat: make all functions inlinable 2026-02-15 12:52:00 +01:00
t feb9f76053 chore: remove nix flake 2026-02-15 12:51:59 +01:00
3 changed files with 8 additions and 2 deletions
-1
View File
@@ -1,3 +1,2 @@
/target/
/Cargo.lock
/flake.lock
+7
View File
@@ -1,5 +1,12 @@
# Changelog
## 1.0.2
* use rust edition 2024
* make all functions inlinable
* add `#[must_use]` to all functions
* enable clippy lints and fix
## 1.0.1
* repair `elastic_out` function
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "simple-easing"
version = "1.0.1"
version = "1.0.2"
description = "Set of simple easing functions"
edition = "2024"
repository = "https://gitlab.com/chpio/simple-easing"