Skip to content

Commit

Permalink
Merge pull request #37 from lekman/release-please--branches--main--co…
Browse files Browse the repository at this point in the history
…mponents--AzureLiquid.Preview

chore(main): release AzureLiquid.Preview 1.3.0
  • Loading branch information
lekman authored Dec 2, 2024
2 parents fa5cab6 + b2b3c71 commit 6d1fc3a
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 54 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"AzureLiquid": "1.2.0",
"AzureLiquid.Preview": "1.2.0"
"AzureLiquid.Preview": "1.3.0"
}
106 changes: 53 additions & 53 deletions AzureLiquid.Preview/AzureLiquid.Preview.csproj
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>LiquidPreview</AssemblyName>
<AssemblyOriginatorKeyFile>AzureLiquid.OpenSource.snk</AssemblyOriginatorKeyFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>AzureLiquid.Preview</PackageId>
<Version>1.2.0</Version>
<Authors>Tobias Lekman</Authors>
<Company>Lekman Consulting</Company>
<Description>Allows live preview of Liquid templates, specifically designed for the Azure cloud services.</Description>
<RepositoryType>https://github.com/lekman/AzureLiquid</RepositoryType>
<PackageTags>git</PackageTags>
<Copyright>Licensed under the Apache License 2.0</Copyright>
<PackageProjectUrl>https://lekman.com/blog/2022/10/data-transformations-in-azure-with-liquid/</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackAsTool>true</PackAsTool>
<ToolCommandName>liquidpreview</ToolCommandName>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>CS8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AzureLiquid" Version="1.1.1"/>
<PackageReference Include="Roslynator.Analyzers" Version="4.4.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Roslynator.Core" Version="4.4.0"/>
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.7.0.75501">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="Sample\albums.liquid">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Sample\albums.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="all" Condition="$(MSBuildProjectExtension) == '.csproj'"/>
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>LiquidPreview</AssemblyName>
<AssemblyOriginatorKeyFile>AzureLiquid.OpenSource.snk</AssemblyOriginatorKeyFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>AzureLiquid.Preview</PackageId>
<Version>1.3.0</Version>
<Authors>Tobias Lekman</Authors>
<Company>Lekman Consulting</Company>
<Description>Allows live preview of Liquid templates, specifically designed for the Azure cloud services.</Description>
<RepositoryType>https://github.com/lekman/AzureLiquid</RepositoryType>
<PackageTags>git</PackageTags>
<Copyright>Licensed under the Apache License 2.0</Copyright>
<PackageProjectUrl>https://lekman.com/blog/2022/10/data-transformations-in-azure-with-liquid/</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackAsTool>true</PackAsTool>
<ToolCommandName>liquidpreview</ToolCommandName>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>CS8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AzureLiquid" Version="1.1.1"/>
<PackageReference Include="Roslynator.Analyzers" Version="4.4.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Roslynator.Core" Version="4.4.0"/>
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.7.0.75501">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="Sample\albums.liquid">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Sample\albums.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="all" Condition="$(MSBuildProjectExtension) == '.csproj'"/>
</ItemGroup>
</Project>
7 changes: 7 additions & 0 deletions AzureLiquid.Preview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.3.0](https://github.com/lekman/AzureLiquid/compare/AzureLiquid.Preview@v1.2.0...AzureLiquid.Preview@v1.3.0) (2024-12-02)


### Features

* Add Qodana configuration file and improve code formatting in test files ([d0f4b2c](https://github.com/lekman/AzureLiquid/commit/d0f4b2c47759750b96c75e07fc81843f08594dc7))

## [1.2.0](https://github.com/lekman/AzureLiquid/compare/AzureLiquid.Preview@v1.1.0...AzureLiquid.Preview@v1.2.0) (2024-11-30)

### Features
Expand Down

0 comments on commit 6d1fc3a

Please sign in to comment.