Skip to content

Commit

Permalink
Updated ReleaseStatus and WorkflowStatus enumerator values
Browse files Browse the repository at this point in the history
  • Loading branch information
klaasvandeweerdt committed Feb 18, 2023
1 parent cf1f00f commit ef8f819
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions Source/Sdk4me/Enumerators/Enumerators.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1461,19 +1461,27 @@ public enum ReleaseStatus
/// <summary>
/// Risk and impact.
/// </summary>
[Obsolete("Replaced by 'InProgress'")]
[EnumMember(Value = "risk_and_impact")]
RiskAndimpact,
/// <summary>
/// Approval
/// </summary>
[Obsolete("Replaced by 'InProgress'")]
[EnumMember(Value = "approval")]
Approval,
/// <summary>
/// Implementation
/// </summary>
[Obsolete("Replaced by 'InProgress'")]
[EnumMember(Value = "implementation")]
Implementation,
/// <summary>
/// In Progress.
/// </summary>
[EnumMember(Value = "in_progress")]
InProgress,
/// <summary>
/// Progress halted.
/// </summary>
[EnumMember(Value = "progress_halted")]
Expand Down Expand Up @@ -3005,19 +3013,27 @@ public enum WorkflowStatus
/// <summary>
/// Risk and impact.
/// </summary>
[Obsolete("Replaced by 'InProgress'")]
[EnumMember(Value = "risk_and_impact")]
RiskAndImpact,
/// <summary>
/// Approval.
/// </summary>
[Obsolete("Replaced by 'InProgress'")]
[EnumMember(Value = "approval")]
Approval,
/// <summary>
/// Implementation.
/// </summary>
[Obsolete("Replaced by 'InProgress'")]
[EnumMember(Value = "implementation")]
Implementation,
/// <summary>
/// In Progress.
/// </summary>
[EnumMember(Value = "in_progress")]
InProgress,
/// <summary>
/// Progress halted.
/// </summary>
[EnumMember(Value = "progress_halted")]
Expand Down
6 changes: 3 additions & 3 deletions Source/Sdk4me/Sdk4me.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@

<PropertyGroup>
<LangVersion>7.3</LangVersion>
<AssemblyVersion>2.1.0</AssemblyVersion>
<FileVersion>2.1.0</FileVersion>
<AssemblyVersion>2.1.1</AssemblyVersion>
<FileVersion>2.1.1</FileVersion>
<AnalysisLevel>6.0</AnalysisLevel>
<Authors>Klaas Vandeweerdt</Authors>
<Description>A .NET client for accessing the 4me v1 REST API</Description>
<Copyright>MIT License</Copyright>
<Version>2.1.0</Version>
<Version>2.1.1</Version>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
<RepositoryType>git</RepositoryType>
<PackageIcon>LogoDark128x218.png</PackageIcon>
Expand Down

0 comments on commit ef8f819

Please sign in to comment.