Skip to content
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
21 changes: 21 additions & 0 deletions .github/workflows/publish-vm-superio-ser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish vm-superio-ser to crates.io

on:
push:
tags: ['vm-superio-ser-v*'] # Triggers when pushing tags starting with 'vm-superio-ser-v'

jobs:
publish:
runs-on: ubuntu-latest
# environment: release # Optional: for enhanced security
permissions:
id-token: write # Required for OIDC token exchange
steps:
- uses: actions/checkout@v4
- uses: rust-lang/crates-io-auth-action@v1
id: auth
- run: |
cd vm-superio-ser
cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
21 changes: 21 additions & 0 deletions .github/workflows/publish-vm-superio.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish vm-superio to crates.io

on:
push:
tags: ['vm-superio-v*'] # Triggers when pushing tags starting with 'vm-superio-v'

jobs:
publish:
runs-on: ubuntu-latest
# environment: release # Optional: for enhanced security
permissions:
id-token: write # Required for OIDC token exchange
steps:
- uses: actions/checkout@v4
- uses: rust-lang/crates-io-auth-action@v1
id: auth
- run: |
cd vm-superio
cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
2 changes: 2 additions & 0 deletions vm-superio-ser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Upcoming Release

## v0.4.1

### Changed

- Widen vmm-sys-util dependency to 0.12.0-0.14.0
Expand Down
4 changes: 2 additions & 2 deletions vm-superio-ser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vm-superio-ser"
version = "0.4.0"
version = "0.4.1"
description = "Serialization for legacy device states"
keywords = ["superio", "serialization", "versioning"]
repository = "https://github.com/rust-vmm/vm-superio"
Expand All @@ -19,7 +19,7 @@ versionize_derive = "0.1.3"
# We are using a fixed version of `vm-superio` so that the current version
# of `vm-superio-ser` won't take a newer version of vm-superio, with which
# it may not be compatible.
vm-superio = { version = "=0.8.0", path = "../vm-superio" }
vm-superio = { version = "=0.8.1", path = "../vm-superio" }

[dev-dependencies]
libc = "0.2.39"
Expand Down
2 changes: 2 additions & 0 deletions vm-superio/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Upcoming Release

## v0.8.1

### Changed

- Widen vmm-sys-util dependency to 0.12.0-0.14.0
Expand Down
2 changes: 1 addition & 1 deletion vm-superio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vm-superio"
version = "0.8.0"
version = "0.8.1"
description = "Emulation for legacy devices"
keywords = ["superio", "emulation"]
repository = "https://github.com/rust-vmm/vm-superio"
Expand Down