diff --git a/release-please-config.json b/release-please-config.json index 96e73c2b0..22aaf5bec 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -13,9 +13,6 @@ "include-component-in-tag": false, "include-v-in-tag": true, "draft": false, - "prerelease": true, - "versioning": "prerelease", - "prerelease-type": "preview", "packages": { ".": { "package-name": "Microsoft.OpenApi", diff --git a/src/Microsoft.OpenApi/OpenApiSpecVersion.cs b/src/Microsoft.OpenApi/OpenApiSpecVersion.cs index 6ee2abf36..6138b84c6 100644 --- a/src/Microsoft.OpenApi/OpenApiSpecVersion.cs +++ b/src/Microsoft.OpenApi/OpenApiSpecVersion.cs @@ -1,27 +1,25 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. -namespace Microsoft.OpenApi +namespace Microsoft.OpenApi; +/// +/// Represents versions of OpenAPI specification. +/// +public enum OpenApiSpecVersion { /// - /// Represents versions of OpenAPI specification. + /// Represents OpenAPI V2.0 spec /// - public enum OpenApiSpecVersion - { - /// - /// Represents OpenAPI V2.0 spec - /// - OpenApi2_0, + OpenApi2_0, - /// - /// Represents all patches of OpenAPI V3.0 spec (e.g. 3.0.0, 3.0.1) - /// - OpenApi3_0, + /// + /// Represents all patches of OpenAPI V3.0 spec (e.g. 3.0.0, 3.0.1) + /// + OpenApi3_0, - /// - /// Represents OpenAPI V3.1 spec - /// - OpenApi3_1 + /// + /// Represents OpenAPI V3.1 spec + /// + OpenApi3_1 - } }