Skip to content

Commit 596cd57

Browse files
committed
update changelog and bump version to 0.2.2
1 parent 8be5748 commit 596cd57

2 files changed

Lines changed: 35 additions & 8 deletions

File tree

RepetierSharp/RepetierSharp.csproj

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
1818
<PackageProjectUrl>https://www.nuget.org/packages/RepetierSharp/</PackageProjectUrl>
1919
<RepositoryUrl>https://github.com/Z0rdak/RepetierSharp</RepositoryUrl>
20-
<AssemblyVersion>0.2.1.0</AssemblyVersion>
21-
<FileVersion>0.2.1.0</FileVersion>
22-
<Version>0.2.1</Version>
23-
<PackageVersion>0.2.1</PackageVersion>
20+
<AssemblyVersion>0.2.2.0</AssemblyVersion>
21+
<FileVersion>0.2.2.0</FileVersion>
22+
<Version>0.2.2</Version>
23+
<PackageVersion>0.2.2</PackageVersion>
2424
<NeutralLanguage>en</NeutralLanguage>
2525
<PackageTags>Repetier-Server, 3D-Printing, Websocket, API-Client</PackageTags>
2626
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
@@ -29,11 +29,18 @@
2929
<RepositoryType>git</RepositoryType>
3030
<Nullable>enable</Nullable>
3131
<PackageReleaseNotes>
32-
[0.2.1] - 2025-03-26
33-
32+
Added
33+
- Add command serializer to fix problems with serialization
34+
- Add type mapping for new events
35+
- Add event handling for jobsChanged, printQueueChanged and gcodeStorageChanged events. The corresponding event handlers are now invoked accordingly.
36+
Changed
37+
- Reduce overly excessive error logging from exceptions during message handling
3438
Fixed
35-
- Fix logger factories not using the `using` statement, causing potential memory issues
36-
- Fix JsonDocument during message handling not using the `using` statement, causing potential memory issues
39+
- Fix commands not being serialized properly
40+
- Fix parsed json being discard to early causing errors
41+
- Fix wrong type cast for state event serialization
42+
- Fix wrong type cast for printerListChanged event serialization
43+
- Fix wrong type cast for userCredentials event serialization
3744
</PackageReleaseNotes>
3845
<!-- Disable Warning CS8618 globally. 99% occourance of this is in POCOs where it does not matter at all -->
3946
<NoWarn>CS8618</NoWarn>

RepetierSharp/changelog.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@
77
* print job queue
88
* ...
99

10+
# [0.2.2] - 2025-03-27
11+
12+
## Added
13+
14+
- Add command serializer to fix problems with serialization
15+
- Add type mapping for new events
16+
- Add event handling for jobsChanged, printQueueChanged and gcodeStorageChanged events. The corresponding event handlers are now invoked accordingly.
17+
18+
## Changed
19+
20+
- Reduce overly excessive error logging from exceptions during message handling
21+
22+
## Fixed
23+
24+
- Fix commands not being serialized properly
25+
- Fix parsed json being discard to early causing errors
26+
- Fix wrong type cast for state event serialization
27+
- Fix wrong type cast for printerListChanged event serialization
28+
- Fix wrong type cast for userCredentials event serialization
29+
1030
# [0.2.1] - 2025-03-26
1131

1232
## Fixed

0 commit comments

Comments
 (0)