Skip to content

Commit

Permalink
bump to v10; API to estimated release date (#6085)
Browse files Browse the repository at this point in the history
Closes #6057
  • Loading branch information
ahl authored Jul 15, 2024
1 parent 413620a commit 8c6afd1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dev-tools/releng/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ use crate::job::Jobs;
/// to as "v8", "version 8", or "release 8" to customers). The use of semantic
/// versioning is mostly to hedge for perhaps wanting something more granular in
/// the future.
const BASE_VERSION: Version = Version::new(9, 0, 0);
const BASE_VERSION: Version = Version::new(10, 0, 0);

const RETRY_ATTEMPTS: usize = 3;

Expand Down
2 changes: 1 addition & 1 deletion nexus/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ extern crate slog;
/// to stdout.
pub fn run_openapi_external() -> Result<(), String> {
external_api()
.openapi("Oxide Region API", "20240710.0")
.openapi("Oxide Region API", "20240821.0")
.description("API for interacting with the Oxide control plane")
.contact_url("https://oxide.computer")
.contact_email("[email protected]")
Expand Down
2 changes: 1 addition & 1 deletion nexus/tests/integration_tests/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ fn test_nexus_openapi() {
.expect("stdout was not valid OpenAPI");
assert_eq!(spec.openapi, "3.0.3");
assert_eq!(spec.info.title, "Oxide Region API");
assert_eq!(spec.info.version, "20240710.0");
assert_eq!(spec.info.version, "20240821.0");

// Spot check a couple of items.
assert!(!spec.paths.paths.is_empty());
Expand Down
2 changes: 1 addition & 1 deletion openapi/nexus.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://oxide.computer",
"email": "[email protected]"
},
"version": "20240710.0"
"version": "20240821.0"
},
"paths": {
"/device/auth": {
Expand Down

0 comments on commit 8c6afd1

Please sign in to comment.