Skip to content

Commit

Permalink
release: 0.6.3
Browse files Browse the repository at this point in the history
- Fix `README` formatting.
  • Loading branch information
basdirks-purple committed Apr 6, 2024
1 parent 99fd0f4 commit ab1b889
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
- Add `dijkstra::mssp`.
- Add `dijkstra::sssp`.

## [0.6.3] - 2024-04-06

### Changed

- Fix `README` formatting.

## [0.6.2] - 2024-04-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graaf"
version = "0.6.2"
version = "0.6.3"
edition = "2021"
authors = ["Bas Dirks <bas.dirks@protonmail.com>"]
categories = ["algorithms", "data-structures", "mathematics"]
Expand Down
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,10 @@ These traits are implemented for various graph representations built from standa

- `Vec<Vec<usize>>`
- `Vec<HashSet<usize>>`

- `[Vec<usize>]`
- `[HashSet<usize>]`

- `[Vec<usize>; V]`
- `[HashSet<usize>; V]`

- `HashMap<usize, Vec<usize>>`
- `HashMap<usize, HashSet<usize>>`

Expand All @@ -68,15 +65,12 @@ These traits are implemented for various graph representations built from standa
- `Vec<Vec<(usize, W)>>`
- `Vec<HashSet<(usize, W)>>`
- `Vec<HashMap<usize, W>>`

- `[Vec<(usize, W)>]`
- `[HashSet<(usize, W)>]`
- `[HashMap<usize, W>]`

- `[Vec<(usize, W)>; V]`
- `[HashSet<(usize, W)>; V]`
- `[HashMap<usize, W>; V]`

- `HashMap<usize, Vec<(usize, W)>>`
- `HashMap<usize, HashSet<(usize, W)>>`
- `HashMap<usize, HashMap<usize, W>>`
Expand Down

0 comments on commit ab1b889

Please sign in to comment.