Skip to content

Commit

Permalink
2.5.2 - Fixed: NuGet development dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
equiman committed Apr 27, 2020
1 parent 6149249 commit 25dcdd8
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
dotnet: 3.1.201
version: 2.5.1
version: 2.5.2
key: dein:colorify
organization: dein
name: Colorify
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
dotnet: 3.1.201
version: 2.5.1
version: 2.5.2

jobs:
pack:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ Fixed for any bug fixes.
Security to invite users to upgrade in case of vulnerabilities.
-->

## [2.5.2] - 2020-04-27

**Fixed:**

- NuGet development dependency.

## [2.5.1] - 2020-04-24

**Added:**
Expand Down
4 changes: 2 additions & 2 deletions Colorify/Colorify.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<PropertyGroup>
<AssemblyName>Colorify</AssemblyName>
<PackageId>Colorify</PackageId>
<VersionPrefix>2.5.1</VersionPrefix>
<VersionPrefix>2.5.2</VersionPrefix>
<ProjectGuid>{17e39bbe-4f41-467c-869b-ab6c49fe9b31}</ProjectGuid>

<Authors>Camilo Martinez</Authors>
<Company>dein Software</Company>
<NeutralLanguage>en-US</NeutralLanguage>
<AssemblyTitle>Colorify</AssemblyTitle>
<Description>C# NETCore Console Library with Text Format: colors, alignment and lot more</Description>
<Copyright>dein Software © 2017</Copyright>
<Copyright>dein Software © since 2017</Copyright>

<PackageTags>dotnet;core;win-x64;osx-x64;linux-x64;</PackageTags>
<PackageIconUrl>https://github.com/deinsoftware/colorify/blob/master/icon.png</PackageIconUrl>
Expand Down
6 changes: 3 additions & 3 deletions Colorify/Colorify.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>dein.Colorify</id>
<version>2.5.1</version>
<version>2.5.2</version>
<title>dein Colorify</title>
<authors>Camilo Martinez</authors>
<owners>dein,equiman</owners>
Expand All @@ -17,10 +17,10 @@
<sumary>C# .Net Core Console Library with Text Format: colors, alignment and lot more [ for Win, Mac + Linux ]</sumary>
<documentation src="README.md" />
<releaseNotes>Refer to https://github.com/deinsoftware/colorify/blob/master/CHANGELOG.md on GitHub.</releaseNotes>
<copyright>dein Software © 2017</copyright>
<copyright>dein Software © since 2017</copyright>
<tags>colorify dotnet-core macos windows linux library theme csharp format-library colors alignment</tags>
<language>en-US</language>
<developmentDependency>true</developmentDependency>
<developmentDependency>false</developmentDependency>
<dependencies>
<group targetFramework="netcoreapp2.2" />
<group targetFramework="netcoreapp3.1" />
Expand Down
2 changes: 1 addition & 1 deletion Sample/Sample.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference Include="dein.Colorify" Version="2.5.1" />
<PackageReference Include="dein.Colorify" Version="2.5.2" />
<!-- <ProjectReference Include="../Colorify/Colorify.csproj" /> -->
<PackageReference Include="dein.ToolBox" Version="1.6.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
Expand Down
2 changes: 1 addition & 1 deletion sonar.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off
set /p token=<sonar.txt
:: https://docs.sonarqube.org/display/SONAR/Analysis+Parameters
dotnet sonarscanner begin /k:"dein:colorify" /n:"Colorify" /v:"2.5.1" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="%token%" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*"
dotnet sonarscanner begin /k:"dein:colorify" /n:"Colorify" /v:"2.5.2" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="%token%" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*"
dotnet restore
dotnet build
dotnet test Colorify.Tests/Colorify.Tests.csproj
Expand Down
2 changes: 1 addition & 1 deletion sonar.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
token="$(cat sonar.txt)"
# https://docs.sonarqube.org/display/SONAR/Analysis+Parameters
dotnet sonarscanner begin /k:"dein:colorify" /n:"Colorify" /v:"2.5.1" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="${token}" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*"
dotnet sonarscanner begin /k:"dein:colorify" /n:"Colorify" /v:"2.5.2" /o:"dein" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="${token}" /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*"
dotnet restore
dotnet build
dotnet test Colorify.Tests/Colorify.Tests.csproj
Expand Down

0 comments on commit 25dcdd8

Please sign in to comment.