aboutsummaryrefslogtreecommitdiff
path: root/vendor/exr/releasing.md
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/exr/releasing.md
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/exr/releasing.md')
-rw-r--r--vendor/exr/releasing.md30
1 files changed, 0 insertions, 30 deletions
diff --git a/vendor/exr/releasing.md b/vendor/exr/releasing.md
deleted file mode 100644
index 582c81b..0000000
--- a/vendor/exr/releasing.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# Release Checklist
-Yanking shouldn't be the default.
-
-## Safety Checklist
-1. No `unsafe`
-1. Everything builds, not only `cargo test`
-1. Builds with `--release` flag
-1. All tests pass, all benchmarks run
-1. All tests pass, including `#[ignore]` tests and fuzzing!
-1. Images produced by running the examples can be opened in other software
-1. Only safe `as` casts
-1. Always have a max limit when allocating based on file contents
- - limit max capacity `Vec::with_capacity( x.min(1024) )`
- - careful with `vec![ 0; x ]`
-1. Only unreachable `unwrap()`, `expect("")` and `assert`s
-1. No `println!` outside of tests and examples
-1. `assert_eq` and `debug_assert_eq` should have a message explaining the context, except in internal algorithms like compressors
-1. ensure `#![warn(missing_docs)]` in `lib.rs`
-1. Example in README.md should be up-to-date
-1. GUIDE.md should be up-to-date
-1. Update Dependencies while you're at it?
-
-## Tasks
-1. Bump version in
- - `cargo.toml`
- - `README.md`
- - `examples/README.md`
-
-1. Run `cargo publish`
- \ No newline at end of file