Skip to content

Commit

Permalink
CHANGELOG for v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-wild committed Oct 3, 2022
1 parent 812a643 commit 6f47c6d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

<!-- Please update the links section at the bottom when adding a new version. -->

## [v0.11.0] - 2022-10-03
### Added
- Message and Operation attributes now allow setting tags

## [v0.10.0] - 2022-08-22
### Changed
- AsyncAPI spec version bumped to 2.4.0
Expand Down Expand Up @@ -131,6 +135,7 @@ When updating here set baseVersion to the previous tag and targetVersion to your
This link will be dead until after you have completed the pull request and tagged the new version in master
-->

[v0.11.0]: https://github.com/tehmantra/saunter/compare/v0.10.0...v0.11.0
[v0.10.0]: https://github.com/tehmantra/saunter/compare/v0.9.1...v0.10.0
[v0.9.1]: https://github.com/tehmantra/saunter/compare/v0.9.0...v0.9.1
[v0.9.0]: https://github.com/tehmantra/saunter/compare/v0.8.0...v0.9.0
Expand Down
3 changes: 3 additions & 0 deletions src/Saunter/Attributes/OperationAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public abstract class OperationAttribute : Attribute
/// </summary>
public string BindingsRef { get; set; }

/// <summary>
/// A list of tags for API documentation control. Tags can be used for logical grouping of operations.
/// </summary>
public string[] Tags { get; protected set; }
}

Expand Down

0 comments on commit 6f47c6d

Please sign in to comment.