diff --git a/Cargo.toml b/Cargo.toml index 0ddaa2f..9343304 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" @@ -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" +```