Skip to content

Commit 73a62b2

Browse files
committed
Add CHANGELOG.md and update version to 1.0.1
1 parent a175246 commit 73a62b2

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.1] - 2025-02-25
11+
12+
### Fixed
13+
- Fixed stack overflow caused by depth first search algorithm
14+
by making it non-recursive.
15+
16+
## [1.0.0] - 2024-10-25
17+
18+
### Added
19+
- Initial release of the project.
20+
- Basic graph data structure implementation.
21+
- Unit tests for graph operations.

elm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "guida-lang/graph",
44
"summary": "An Elm graph type implementation, inspired by Haskell's Data.Graph",
55
"license": "BSD-3-Clause",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"exposed-modules": [
88
"Data.Graph"
99
],

0 commit comments

Comments
 (0)