Skip to content
This repository has been archived by the owner on Jul 6, 2024. It is now read-only.

Commit

Permalink
Bump version to 1.0.0
Browse files Browse the repository at this point in the history
## [1.0.0] - 2023-10-09

### Added
- Implemented image rotation on the CPU, three new CPU filters, enabled console control over image processing parameters. (#1)
- Implemented image processing agents for sets of images, supporting sequential and parallel options. (#3)
- Implemented GPU kernels for image rotations and reflections, standardized agent functionality for CPU and GPU, and added a logging agent for event tracking.(#4)
  • Loading branch information
PolinaSavelyeva committed Oct 9, 2023
1 parent 8f9d19a commit 599f93c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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-10-09

### 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
8 changes: 4 additions & 4 deletions src/ImageProcessing/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("ImageProcessing")>]
[<assembly: AssemblyProductAttribute("ImageProcessing")>]
[<assembly: AssemblyVersionAttribute("1.0.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-09-16T00:00:00.0000000+03:00")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-10-09T00:00:00.0000000+03:00")>]
[<assembly: AssemblyFileVersionAttribute("1.0.0")>]
[<assembly: AssemblyInformationalVersionAttribute("1.0.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","51f4f264c036c5c4b3b09f230cb5cec91079c322")>]
[<assembly: AssemblyMetadataAttribute("GitHash","8f9d19a208b9809eae325118acbe6945f5c51372")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "ImageProcessing"
let [<Literal>] AssemblyProduct = "ImageProcessing"
let [<Literal>] AssemblyVersion = "1.0.0"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-09-16T00:00:00.0000000+03:00"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-10-09T00:00:00.0000000+03:00"
let [<Literal>] AssemblyFileVersion = "1.0.0"
let [<Literal>] AssemblyInformationalVersion = "1.0.0"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "51f4f264c036c5c4b3b09f230cb5cec91079c322"
let [<Literal>] AssemblyMetadata_GitHash = "8f9d19a208b9809eae325118acbe6945f5c51372"

0 comments on commit 599f93c

Please sign in to comment.