Skip to content

Commit ff98ef0

Browse files
committed
chore: update version to 2.0.2 and enhance documentation with project website links 🌐
1 parent 2bc54bb commit ff98ef0

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.2] - 2025-07-19
9+
10+
### Changed
11+
12+
- Updated Dart SDK requirement to ^3.8.1 (latest stable)
13+
- Updated lints dependency to ^6.0.0
14+
- Added project website link to README
15+
16+
### Added
17+
18+
- Project website at https://vaibhavhrt.github.io/dart_imagehash/
19+
820
## [2.0.1] - 2025-04-28
921

1022
### Fixed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
A Dart package for perceptual image hashing, inspired by the [Python imagehash library](https://github.com/JohannesBuchner/imagehash).
44

5+
🌐 **[Project Website](https://vaibhavhrt.github.io/dart_imagehash/)**
6+
57
Image hashing algorithms generate compact, fixed-length fingerprints from images that allow you to:
68

79
- Find visually similar images (even with small transformations)
@@ -67,7 +69,7 @@ void main() {
6769
}
6870
```
6971

70-
For a more comprehensive example that demonstrates comparing images with all four hash algorithms, check out the [example](example) included in this package. The example demonstrates how to:
72+
For a more comprehensive example that demonstrates comparing images with all four hash algorithms, check out the [example](example) included in this package. You can also try the [interactive demo](https://vaibhavhrt.github.io/dart_imagehash/demo) to see the algorithms in action. The example demonstrates how to:
7173

7274
- Calculate and compare hashes for similar and different images
7375
- Calculate hashes directly from image bytes

example/example-website/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
A beautiful, responsive website for the dart_imagehash package built with SvelteKit 5, Tailwind CSS, and modern web technologies.
44

5+
🌐 **[Live Website](https://vaibhavhrt.github.io/dart_imagehash/)**
6+
57
## Features
68

79
- **Modern Design**: Clean, responsive design with smooth animations

pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: dart_imagehash
2-
version: 2.0.1
2+
version: 2.0.2
33
description: "A library for computing perceptual image hashes in Dart."
4-
homepage: https://github.com/vaibhavhrt/dart_imagehash
4+
homepage: https://vaibhavhrt.github.io/dart_imagehash/
55
repository: https://github.com/vaibhavhrt/dart_imagehash
66
topics:
77
- image
@@ -11,12 +11,12 @@ topics:
1111
- image-comparison
1212

1313
environment:
14-
sdk: ^3.7.2
14+
sdk: ^3.8.1
1515

1616
dependencies:
1717
collection: ^1.19.1
1818
image: ^4.5.4
1919

2020
dev_dependencies:
21-
lints: ^5.1.1
21+
lints: ^6.0.0
2222
test: ^1.25.15

0 commit comments

Comments
 (0)