Skip to content

Commit 2c20745

Browse files
committed
Bump to v0.11.0
1 parent 303ec33 commit 2c20745

File tree

5 files changed

+127
-108
lines changed

5 files changed

+127
-108
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
publish:
106106
runs-on: ubuntu-latest
107107
container:
108-
image: rust:1.85
108+
image: rust:stable
109109
needs: [test, build]
110110
environment: production
111111
if: startsWith(github.ref, 'refs/tags/v')
@@ -122,10 +122,5 @@ jobs:
122122
exit 1
123123
fi
124124
- name: Publish to crates.io
125-
# Currently, MSRV does not support the `cargo publish --workspace` command, so putting all packages explicitly is required.
126-
# Also, versions are always workspace-defined, so publishing all packages together is required.
127125
run: |
128-
for crate_name in smb-tests smb-dtyp smb-fscc smb-msg smb-transport smb-rpc smb; do
129-
echo "Publishing crate: $crate_name"
130-
cargo publish -p ${crate_name} --token ${{ secrets.CRATES_IO_TOKEN }}
131-
done
126+
cargo publish --workspace --token ${{ secrets.CRATES_IO_TOKEN }}

0 commit comments

Comments
 (0)