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

Commit

Permalink
Revert release commit
Browse files Browse the repository at this point in the history
  • Loading branch information
PolinaSavelyeva committed Sep 15, 2023
1 parent 2bb6f1a commit 63f6433
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 86 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
# 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).

## [1.0.0] - 2023-09-14
## [Unreleased]

### 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
44 changes: 30 additions & 14 deletions src/ImageProcessing/AssemblyInfo.fs
Original file line number Diff line number Diff line change
@@ -1,23 +1,39 @@
// Auto-Generated by FAKE; do not edit
namespace System

open System.Reflection

[<assembly: AssemblyTitleAttribute("ImageProcessing")>]
[<assembly: AssemblyProductAttribute("ImageProcessing")>]
[<assembly: AssemblyVersionAttribute("1.0.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-09-14T00:00:00.0000000+03:00")>]
[<assembly: AssemblyFileVersionAttribute("1.0.0")>]
[<assembly: AssemblyInformationalVersionAttribute("1.0.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","e49cadff6725d76057afeed98e12c0f705b254b1")>]
[<assembly: AssemblyVersionAttribute("0.1.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate", "2017-03-17T00:00:00.0000000")>]
[<assembly: AssemblyFileVersionAttribute("0.1.0")>]
[<assembly: AssemblyInformationalVersionAttribute("0.1.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel", "release")>]
[<assembly: AssemblyMetadataAttribute("GitHash", "b385af579477bb585016a6b5204121de4a485dac")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "ImageProcessing"
let [<Literal>] AssemblyProduct = "ImageProcessing"
let [<Literal>] AssemblyVersion = "1.0.0"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-09-14T00: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 = "e49cadff6725d76057afeed98e12c0f705b254b1"
[<Literal>]
let AssemblyTitle = "ImageProcessingByPolina"

[<Literal>]
let AssemblyProduct = "ImageProcessingByPolina"

[<Literal>]
let AssemblyVersion = "0.1.0"

[<Literal>]
let AssemblyMetadata_ReleaseDate = "2017-03-17T00:00:00.0000000"

[<Literal>]
let AssemblyFileVersion = "0.1.0"

[<Literal>]
let AssemblyInformationalVersion = "0.1.0"

[<Literal>]
let AssemblyMetadata_ReleaseChannel = "release"

[<Literal>]
let AssemblyMetadata_GitHash = "b385af579477bb585016a6b5204121de4a485dac"
Loading

0 comments on commit 63f6433

Please sign in to comment.