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

chore: Prepare release 1.2.0 #63

Merged
merged 2 commits into from
Jan 10, 2025
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.2.0

- feat: Support Net 9.0 (#62) (2025-01-07)
- ci: Improvements in CI workflow (#60) (2024-11-24)

## 1.1.0

- feat: Portable Debug Data images (#56)
Expand Down
19 changes: 19 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,22 @@
- Under package, update the version name

Each time you build your project a .nupkg file will be created in your bin directory.

## Release process

- Increase version in `src/Version.props`
- Update `CHANGELOG.md`
- Build package in release mode. e.g:

```
dotnet build --configuration Release Raygun.Blazor
```

- Pack NuGet package. e.g:

```
dotnet pack Raygun.Blazor
```

- Upload NuGet package to nuget.org.
e.g: Package located in `src/(project)/bin/Release`.
2 changes: 2 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<Project>
<Import Project="Version.props" />

<!-- Folder layout -->
<PropertyGroup>
<IsBenchmarkProject Condition="$(MSBuildProjectName.ToLower().Contains('.benchmarks.'))">true</IsBenchmarkProject>
Expand Down
2 changes: 0 additions & 2 deletions src/Raygun.Blazor.Maui/Raygun.Blazor.Maui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@
<!-- NuGet Package config -->
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.1.0</Version>
<PackageVersion>1.1.0</PackageVersion>
<Authors>Raygun Limited</Authors>
<Title>Raygun for MAUI Blazor Hybrid</Title>
<Description>Raygun's Crash Reporting extension for MAUI Blazor Hybrid apps</Description>
Expand Down
2 changes: 0 additions & 2 deletions src/Raygun.Blazor.Server/Raygun.Blazor.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@

<!-- NuGet Package config -->
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.1.0</Version>
<PackageVersion>1.1.0</PackageVersion>
<Authors>Raygun Limited</Authors>
<Title>Raygun for Blazor Server</Title>
<Description>Raygun's Crash Reporting extension for Blazor Server</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@

<!-- NuGet Package config -->
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.1.0</Version>
<PackageVersion>1.1.0</PackageVersion>
<Authors>Raygun Limited</Authors>
<Title>Raygun for Blazor WebAssembly</Title>
<Description>Raygun's Crash Reporting extension for Blazor WebAssembly</Description>
Expand Down
2 changes: 0 additions & 2 deletions src/Raygun.Blazor/Raygun.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@

<!-- NuGet Package config -->
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.1.0</Version>
<PackageVersion>1.1.0</PackageVersion>
<Authors>Raygun Limited</Authors>
<Title>Raygun for Blazor</Title>
<Description>Raygun's Crash Reporting Provider for Blazor .NET</Description>
Expand Down
6 changes: 6 additions & 0 deletions src/Version.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<Project>
<PropertyGroup>
<Version>1.2.0</Version>
<PackageVersion>1.2.0</PackageVersion>
</PropertyGroup>
</Project>
Loading