Skip to content

Commit

Permalink
Bump version to 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jlucansky committed Feb 12, 2020
1 parent 6aafcd1 commit 4ac5d7a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
14 changes: 4 additions & 10 deletions Camunda.Api.Client/Camunda.Api.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,20 @@
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>2.5.0-prerelease01</Version>
<Version>2.5.0</Version>
<Product>Camunda REST API Client</Product>
<Title>Camunda REST API Client</Title>
<Authors>Jan Lucansky</Authors>
<PackageProjectUrl>https://github.com/jlucansky/Camunda.Api.Client</PackageProjectUrl>
<PackageIconUrl>https://avatars3.githubusercontent.com/u/2443838?s=230</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<Description>Camunda REST API Client for .NET platform</Description>
<PackageTags>camunda rest refit bpmn bpm</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<RepositoryType></RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\Camunda.Api.Client.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<NoWarn>1701;1702;1705</NoWarn>
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand All @@ -34,6 +27,7 @@

<ItemGroup>
<None Include="..\LICENSE" Pack="true" PackagePath="" />
<None Include="icon.png" Pack="true" PackagePath=""/>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net452'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ public abstract class ProcessDefinitionResource
/// Retrieves the start form variables for a process definition. The start form variables take form data specified on the start event into account.
/// If form fields are defined, the variable types and default values of the form fields are taken into account.
/// </summary>
/// <param name="variableNames">Allows restricting the list of requested variables to the variable names in the list.
/// It is best practice to restrict the list of variables to the variables actually required by the form in order to minimize fetching of data.
/// If the query parameter is ommitted all variables are fetched. If the query parameter contains non-existent variable names, the variable names are ignored.</param>
/// <param name="deserializeValues">Determines whether serializable variable values (typically variables that store custom Java objects) should be deserialized on server side.</param>
public abstract Task<Dictionary<string, VariableValue>> GetFormVariables(string[] variableNames, bool deserializeValues = true);
}
Expand Down
Binary file added Camunda.Api.Client/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4ac5d7a

Please sign in to comment.