From ce9677c8cebf0077991d76aa526126c3ae2e01a6 Mon Sep 17 00:00:00 2001 From: James Hodgkinson Date: Tue, 16 Jan 2024 08:43:49 +1000 Subject: [PATCH 1/2] updating package versions --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0ddaa2f..b1018a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,8 +28,8 @@ futures-util = "^0.3.21" lber = "^0.4.0" # Must match lber nom = "7" -ldap3_client = { path = "./client", version = "0.4.1" } -ldap3_proto = { path = "./proto", version = "0.4.1" } +ldap3_client = { path = "./client", version = "^0.4.3" } +ldap3_proto = { path = "./proto", version = "^0.4.3" } peg = "0.8.1" openssl = "^0.10.38" ron = "^0.8.0" From f1d08eba56125ddd062ea6700887db5a9c69dc06 Mon Sep 17 00:00:00 2001 From: James Hodgkinson Date: Tue, 16 Jan 2024 08:49:17 +1000 Subject: [PATCH 2/2] 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" +```