Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.4.3 release #50

Merged
merged 2 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
19 changes: 19 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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"
```