Skip to content

Commit

Permalink
Merge pull-request #413
Browse files Browse the repository at this point in the history
  • Loading branch information
emostov committed Nov 28, 2023
2 parents 4c6f809 + 4c3c7a4 commit 7d3f7ca
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 17 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ Removed: for now removed features.
Fixed: for any bug fixes.
Security: in case of vulnerabilities.

## [Unreleased]
## [0.3.0] 2023.11.27

## [1.0.0] 2023.11.27
### Changed

- qos_core: do not go in unrecoverable phase if live_attestation_doc fails. (#412)

### Added

Expand Down
2 changes: 1 addition & 1 deletion dist/aws-x86_64.eif
Git LFS file not shown
4 changes: 2 additions & 2 deletions dist/aws-x86_64.pcrs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
0754f973598077f7decbcc407a579a5ec3fece768784d42802f7fdf30dc65f96022d20379dd5d81d7970ffb5205d8b0f PCR0
0754f973598077f7decbcc407a579a5ec3fece768784d42802f7fdf30dc65f96022d20379dd5d81d7970ffb5205d8b0f PCR1
181bd012baaecfd0bd4d6f617bea65ad5a76413d2a0c09b18efe72bff3fdc4b55f7416ec6d88a4d3236ce02d83b5eb8b PCR0
181bd012baaecfd0bd4d6f617bea65ad5a76413d2a0c09b18efe72bff3fdc4b55f7416ec6d88a4d3236ce02d83b5eb8b PCR1
21b9efbc184807662e966d34f390821309eeac6802309798826296bf3e8bec7c10edb30948c90ba67310f7b964fc500a PCR2
4 changes: 2 additions & 2 deletions dist/qos_client.linux-x86_64
Git LFS file not shown
2 changes: 1 addition & 1 deletion dist/qos_client.oci.x86_64.tar
Git LFS file not shown
2 changes: 1 addition & 1 deletion dist/qos_client.x86_64.tar
Git LFS file not shown
2 changes: 1 addition & 1 deletion dist/qos_enclave.oci.x86_64.tar
Git LFS file not shown
2 changes: 1 addition & 1 deletion dist/qos_host.linux-x86_64
Git LFS file not shown
2 changes: 1 addition & 1 deletion dist/qos_host.oci.x86_64.tar
Git LFS file not shown
2 changes: 1 addition & 1 deletion dist/qos_host.x86_64.tar
Git LFS file not shown
6 changes: 3 additions & 3 deletions dist/release.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION=2023.11.27
GIT_REF=e7912f170cec66911e37a2289eec8deb58eda6ef
VERSION=2023.11.28
GIT_REF=b2a2ef249adf31b43527769758170255f445da2f
GIT_AUTHOR=Zeke Mostov
GIT_KEY=D96C422E04DE5D2EE0F7E9E7DBB0DCA38D405491
GIT_TIMESTAMP=2023-11-27 13:04:34 -0500
GIT_TIMESTAMP=2023-11-28 10:04:46 -0500
3 changes: 2 additions & 1 deletion src/qos_core/src/protocol/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ impl ProtocolRoute {
ProtocolRoute::new(
Box::new(handlers::live_attestation_doc),
current_phase,
ProtocolPhase::UnrecoverableError,
current_phase,
)
}

Expand Down Expand Up @@ -243,6 +243,7 @@ impl ProtocolState {
vec![
ProtocolRoute::status(self.phase),
ProtocolRoute::manifest_envelope(self.phase),
ProtocolRoute::live_attestation_doc(self.phase),
]
}
ProtocolPhase::GenesisBooted => {
Expand Down

0 comments on commit 7d3f7ca

Please sign in to comment.