From ccdec50e1935144b83294d562b1c1650d4205f74 Mon Sep 17 00:00:00 2001 From: PolinaSavelyeva Date: Fri, 15 Sep 2023 19:43:52 +0300 Subject: [PATCH] Bump version to 1.0.0 ## [1.0.0] - 2023-09-15 ### Added - Implemented image rotation on the CPU, three new CPU filters, enabled console control over image processing parameters. (https://github.com/PolinaSavelyeva/ImageProcessing/pull/1) - Implemented image processing agents for sets of images, supporting sequential and parallel options. (https://github.com/PolinaSavelyeva/ImageProcessing/pull/3) - Implemented GPU kernels for image rotations and reflections, standardized agent functionality for CPU and GPU, and added a logging agent for event tracking.(https://github.com/PolinaSavelyeva/ImageProcessing/pull/4) --- CHANGELOG.md | 5 +++- src/ImageProcessing/AssemblyInfo.fs | 44 +++++++++-------------------- 2 files changed, 18 insertions(+), 31 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c91dc3..2e01314 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,15 @@ # Changelog + All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.0.0] - 2023-09-15 ### Added - Implemented image rotation on the CPU, three new CPU filters, enabled console control over image processing parameters. (https://github.com/PolinaSavelyeva/ImageProcessing/pull/1) - Implemented image processing agents for sets of images, supporting sequential and parallel options. (https://github.com/PolinaSavelyeva/ImageProcessing/pull/3) - Implemented GPU kernels for image rotations and reflections, standardized agent functionality for CPU and GPU, and added a logging agent for event tracking.(https://github.com/PolinaSavelyeva/ImageProcessing/pull/4) +[Unreleased]: https://github.com/PolinaSavelyeva/ImageProcessing/compare/v1.0.0...HEAD +[1.0.0]: https://github.com/PolinaSavelyeva/ImageProcessing/releases/tag/v1.0.0 diff --git a/src/ImageProcessing/AssemblyInfo.fs b/src/ImageProcessing/AssemblyInfo.fs index e28a844..a35fedf 100644 --- a/src/ImageProcessing/AssemblyInfo.fs +++ b/src/ImageProcessing/AssemblyInfo.fs @@ -1,39 +1,23 @@ // Auto-Generated by FAKE; do not edit namespace System - open System.Reflection [] [] -[] -[] -[] -[] -[] -[] +[] +[] +[] +[] +[] +[] do () module internal AssemblyVersionInformation = - [] - let AssemblyTitle = "ImageProcessingByPolina" - - [] - let AssemblyProduct = "ImageProcessingByPolina" - - [] - let AssemblyVersion = "0.1.0" - - [] - let AssemblyMetadata_ReleaseDate = "2017-03-17T00:00:00.0000000" - - [] - let AssemblyFileVersion = "0.1.0" - - [] - let AssemblyInformationalVersion = "0.1.0" - - [] - let AssemblyMetadata_ReleaseChannel = "release" - - [] - let AssemblyMetadata_GitHash = "b385af579477bb585016a6b5204121de4a485dac" + let [] AssemblyTitle = "ImageProcessing" + let [] AssemblyProduct = "ImageProcessing" + let [] AssemblyVersion = "1.0.0" + let [] AssemblyMetadata_ReleaseDate = "2023-09-15T00:00:00.0000000+03:00" + let [] AssemblyFileVersion = "1.0.0" + let [] AssemblyInformationalVersion = "1.0.0" + let [] AssemblyMetadata_ReleaseChannel = "release" + let [] AssemblyMetadata_GitHash = "63f6433e4795704ec51fe8f8446701c22c0ed38b"