-
Notifications
You must be signed in to change notification settings - Fork 281
Support v3.0.1 #160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support v3.0.1 #160
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,18 +4,18 @@ | |
| namespace Microsoft.OpenApi | ||
| { | ||
| /// <summary> | ||
| /// Represents the Open Api specification version. | ||
| /// Represents versions of OpenAPI specification. | ||
| /// </summary> | ||
| public enum OpenApiSpecVersion | ||
| { | ||
| /// <summary> | ||
| /// Open Api v2.0 | ||
| /// Represents OpenAPI V2.0 spec | ||
| /// </summary> | ||
| OpenApi2_0, | ||
|
|
||
| /// <summary> | ||
| /// Open Api v3.0.0 | ||
| /// </summary> | ||
| OpenApi3_0_0 | ||
| /// Represents all patches of OpenAPI V3.0 spec (e.g. 3.0.0, 3.0.1) | ||
| /// </summary> | ||
| OpenApi3_0 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why can not we add new one?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A patch should not represent a functional change to the spec. We are expecting to put out patch releases to the spec monthly. We don't want to update this enum on a monthly basis. |
||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, it's changed to 3.0.1?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we do have v3.0.1 now.