From bf5937a68caa53b197085619ca2a3c1b6f87a351 Mon Sep 17 00:00:00 2001
From: Mateusz Noga-Wojtania <44415151+MatteoDelOmbra@users.noreply.github.com>
Date: Fri, 8 May 2026 08:08:38 +0200
Subject: [PATCH 1/3] Change ReadBytes return type to include byte array
Updated return type of ReadBytes method to include byte array.
---
Frends.Files.ReadBytes/Frends.Files.ReadBytes/ReadBytes.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Frends.Files.ReadBytes/Frends.Files.ReadBytes/ReadBytes.cs b/Frends.Files.ReadBytes/Frends.Files.ReadBytes/ReadBytes.cs
index 49f4c07..b2fd5b7 100644
--- a/Frends.Files.ReadBytes/Frends.Files.ReadBytes/ReadBytes.cs
+++ b/Frends.Files.ReadBytes/Frends.Files.ReadBytes/ReadBytes.cs
@@ -23,7 +23,7 @@ public class Files
/// Input parameters
/// Options parameters
///
- /// Object { string ContentBytes, string Path, double SizeInMegaBytes, DateTime CreationTime, DateTime LastWriteTime }
+ /// Object { byte[] ContentBytes, string Path, double SizeInMegaBytes, DateTime CreationTime, DateTime LastWriteTime }
public static async Task ReadBytes([PropertyTab] Input input, [PropertyTab] Options options, CancellationToken cancellationToken)
{
return await ExecuteActionAsync(
From 6b49916ba08c56f49ee0fbd3e43ff53c609478f0 Mon Sep 17 00:00:00 2001
From: Mateusz Noga-Wojtania <44415151+MatteoDelOmbra@users.noreply.github.com>
Date: Fri, 8 May 2026 08:08:57 +0200
Subject: [PATCH 2/3] Bump version from 1.1.0 to 1.2.0
---
.../Frends.Files.ReadBytes/Frends.Files.ReadBytes.csproj | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Frends.Files.ReadBytes/Frends.Files.ReadBytes/Frends.Files.ReadBytes.csproj b/Frends.Files.ReadBytes/Frends.Files.ReadBytes/Frends.Files.ReadBytes.csproj
index e931d35..05aa203 100644
--- a/Frends.Files.ReadBytes/Frends.Files.ReadBytes/Frends.Files.ReadBytes.csproj
+++ b/Frends.Files.ReadBytes/Frends.Files.ReadBytes/Frends.Files.ReadBytes.csproj
@@ -3,7 +3,7 @@
net6.0
Latest
- 1.1.0
+ 1.2.0
Frends
Frends
Frends
@@ -31,4 +31,4 @@
-
\ No newline at end of file
+
From ae0ac88142a52f2823488da7a471abefc8ece6b7 Mon Sep 17 00:00:00 2001
From: Mateusz Noga-Wojtania <44415151+MatteoDelOmbra@users.noreply.github.com>
Date: Fri, 8 May 2026 08:09:58 +0200
Subject: [PATCH 3/3] Fix documentation of result in CHANGELOG.md
Corrected the documentation for the result in the changelog.
---
Frends.Files.ReadBytes/CHANGELOG.md | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Frends.Files.ReadBytes/CHANGELOG.md b/Frends.Files.ReadBytes/CHANGELOG.md
index 5b2dbda..80fcb70 100644
--- a/Frends.Files.ReadBytes/CHANGELOG.md
+++ b/Frends.Files.ReadBytes/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog
+## [1.2.0] - 2026-05-08
+### Fixed
+- Fix documentation of result
+
## [1.1.0] - 2025-03-19
### Changed
- Update packages:
@@ -15,4 +19,4 @@
## [1.0.0] - 2023-04-20
### Added
-- Initial implementation
\ No newline at end of file
+- Initial implementation