Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.3.2 #50

Merged
merged 1 commit into from
Jun 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,9 @@ jobs:
semantic_version=$(dotnet-gitversion /showvariable SemVer)
echo "semantic_version=$semantic_version" >> $GITHUB_ENV
working-directory: ./
- name: Resolve assembly version
id: assembly_version
run: |
assembly_version=$(dotnet-gitversion /showvariable AssemblySemVer)
echo "assembly_version=$assembly_version" >> $GITHUB_ENV
working-directory: ./
- run: dotnet restore --configfile nuget.config
- run: dotnet format --no-restore --verify-no-changes
- run: dotnet build --no-restore /p:Version=${{ env.assembly_version }}
- run: dotnet build --no-restore /p:Version=${{ env.semantic_version }}
- run: dotnet test --no-build
- run: dotnet pack --no-build /p:PackageVersion=${{ env.semantic_version }}
- uses: actions/upload-artifact@v3
Expand All @@ -52,7 +46,7 @@ jobs:
release_packages:
runs-on: ubuntu-20.04
needs: [build_packages]
if: github.ref == 'refs/heads/main' && github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
if: github.ref_type == 'tag'
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
steps:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.2] - 2022-06-26

### Added

- Add support for Source Link ([#42](https://github.com/josefpihrt/roslynator/pull/42)).
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ build-metadata-padding: 4
mode: ContinuousDeployment

branches:
master:
main:
tag: beta
pull-request:
tag: alpha
Expand Down
1 change: 0 additions & 1 deletion src/CommandLine/CommandLine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<PackAsTool>true</PackAsTool>
<ToolCommandName>orang</ToolCommandName>
<PackageId>Orang.DotNet.Cli</PackageId>
<PackageVersion>0.3.1</PackageVersion>
<Description>Search, replace, rename and delete directories, files and its content using the power of .NET regular expressions.</Description>
<PackageProjectUrl>https://github.com/JosefPihrt/Orang</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion src/CommandLine/PackageInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ namespace Orang.CommandLine
{
internal static class PackageInfo
{
public const string Version = "0.3.1";
public const string Version = "0.3.2";
}
}
1 change: 0 additions & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project>

<PropertyGroup>
<Version>0.3.1.0</Version>
<LangVersion>10.0</LangVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Orang.snk</AssemblyOriginatorKeyFile>
Expand Down
9 changes: 0 additions & 9 deletions tools/build.ps1
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
#dotnet tool install -g orang.dotnet.cli

$version="0.3.1"

orang replace -e cmd -c "(?<=--version )\d+\.\d+\.\d+(-\w+)?" -r "$version"

orang replace "../src" -e csproj -c "(?<=<PackageVersion>)\d+\.\d+\.\d+(-\w+)?(?=</PackageVersion>)" -r "$version"

orang replace "../src/CommandLine/PackageInfo.cs" -c "(?<="")\d+\.\d+\.\d+(-\w+)?(?="")" -r "$version"
Write-Host

orang delete "../src" -a d -n "bin|obj" e --content-only -t n -y su s
Write-Host

Expand Down
2 changes: 1 addition & 1 deletion tools/reinstall_tool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dotnet pack -c Release --no-build -v normal "../src/CommandLine/CommandLine.cspr

dotnet tool uninstall orang.dotnet.cli -g

dotnet tool install orang.dotnet.cli --version 0.3.1 -g --add-source "../src/CommandLine/bin/Release"
dotnet tool install orang.dotnet.cli --version 1.0.0 -g --add-source "../src/CommandLine/bin/Release"

Write-Host "DONE"
Read-Host
2 changes: 1 addition & 1 deletion tools/reinstall_tool_debug.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dotnet pack -c Debug --no-build -v normal "../src/CommandLine/CommandLine.csproj

dotnet tool uninstall orang.dotnet.cli -g

dotnet tool install orang.dotnet.cli --version 0.3.1 -g --add-source "../src/CommandLine/bin/Debug"
dotnet tool install orang.dotnet.cli --version 1.0.0 -g --add-source "../src/CommandLine/bin/Debug"

Write-Host "DONE"
Read-Host