Skip to content

Commit

Permalink
release: version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrehtrb committed Apr 22, 2023
1 parent e6b0164 commit 249842b
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 5 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog

* [2.1.0](#210-2023-04-24)
* [2.0.1](#201-2023-02-26)
* [2.0.0](#200-2022-12-20)
* [1.6.0](#160-2022-11-20)
Expand All @@ -10,6 +11,30 @@
* [1.1.0](#110-2022-03-20)
* [1.0.0](#100-2022-03-08)

## [2.1.0](https://github.com/alexandrehtrb/Pororoca/tree/2.1.0) (2023-04-24)

### Features

* Great improvement on UI/UX for headers, URL encoded and form data params, and websocket subprotocols. Their grids now support drag-and-drop and the item removal actions now have a button on each row.
* Thanks to @aldelaro5 for [creating a drag-and-drop](https://github.com/AvaloniaUI/Avalonia/discussions/10877)!
* Adds MIME types `application/dns-json`, `application/dns-message` and `application/problem+xml` (issue [#19](https://github.com/alexandrehtrb/Pororoca/issues/19)).
* Protects against rare scenario that response body is text, but not in UTF-8 encoding.

### Bug Fixes

* On Linux, requests with client certificate authentication will have independent SSL sessions of others to the same destination host.

### Refactoring

* Now using `[Reactive]` from ReactiveUI.Fody attributes on ViewModel properties.
* Reformatted XML views.
* Reformatted C# code.

### Others

* Raised .NET SDK to 7.0.203.


## [2.0.1](https://github.com/alexandrehtrb/Pororoca/tree/2.0.1) (2023-02-26)

### Minor features
Expand Down
4 changes: 2 additions & 2 deletions src/Pororoca.Desktop/Assets/MacOSX/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<key>CFBundleDisplayName</key>
<string>Pororoca</string>
<key>CFBundleVersion</key>
<string>2.0.1</string>
<string>2.1.0</string>
<key>CFBundleShortVersionString</key>
<string>2.0.1</string>
<string>2.1.0</string>
<key>LSMinimumSystemVersion</key>
<string>10.12</string>
<key>CFBundleExecutable</key>
Expand Down
2 changes: 1 addition & 1 deletion src/Pororoca.Desktop/Pororoca.Desktop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<EnableCompressionInSingleFile>True</EnableCompressionInSingleFile>
<PublishReadyToRun>True</PublishReadyToRun>
<ApplicationIcon>Assets/pororoca_icon.ico</ApplicationIcon>
<Version>2.0.1</Version>
<Version>2.1.0</Version>
<FileVersion>$(Version)</FileVersion>
<AssemblyVersion>$(Version)</AssemblyVersion>
<Copyright>AlexandreHTRB</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion src/Pororoca.Test/Pororoca.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- To generate the package: 'dotnet pack -c Release' -->
<PackageId>Pororoca.Test</PackageId>
<PackageIcon>pororoca.png</PackageIcon>
<PackageVersion>2.0.1</PackageVersion>
<PackageVersion>2.1.0</PackageVersion>
<Description>Package for running Pororoca requests from tests.</Description>
<RepositoryUrl>https://github.com/alexandrehtrb/Pororoca.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down
2 changes: 1 addition & 1 deletion tests/Pororoca.Test.Tests/Pororoca.Test.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ProjectReference Include="..\..\src\Pororoca.Domain\Pororoca.Domain.csproj"/>
<ProjectReference Include="..\..\src\Pororoca.Infrastructure\Pororoca.Infrastructure.csproj"/>
<ProjectReference Include="..\..\src\Pororoca.Test\Pororoca.Test.csproj"/>
<!--PackageReference Include="Pororoca.Test" Version="2.0.1" /-->
<!--PackageReference Include="Pororoca.Test" Version="2.1.0" /-->
<PackageReference Include="Moq" Version="4.18.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="xunit" Version="2.4.2" />
Expand Down

0 comments on commit 249842b

Please sign in to comment.