From f1d08eba56125ddd062ea6700887db5a9c69dc06 Mon Sep 17 00:00:00 2001 From: James Hodgkinson Date: Tue, 16 Jan 2024 08:49:17 +1000 Subject: [PATCH] updates and starting on release notes --- Cargo.toml | 2 +- RELEASE_NOTES.md | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 RELEASE_NOTES.md diff --git a/Cargo.toml b/Cargo.toml index b1018a0..9343304 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,4 +45,4 @@ tracing = { version = "^0.1.34", features = ["attributes"] } tracing-subscriber = "^0.3.11" url = "^2.2.2" uuid = "^1.1.2" -sspi = "0.11.0" +sspi = "^0.11.1" diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md new file mode 100644 index 0000000..83ef103 --- /dev/null +++ b/RELEASE_NOTES.md @@ -0,0 +1,19 @@ +# Doing a release + +Make sure you've done all the tests and clippying and things. + +## Checks + +Fix (what you can) for outdated packages: + +```shell +cargo audit +``` + +## Release order + +```shell +cargo publish -p "ldap3_proto" +cargo publish -p "ldap3_client" +cargo publish -p "ldap3_cli" +```