Skip to content

Commit

Permalink
Update documentation so rubydoc formats correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
GarrisonJ committed Apr 26, 2024
1 parent 43db188 commit 969fea0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## [Unreleased]

## [0.1.0] - 2024-04-16
## [0.1.1] - 2024-04-25

- Update README.md so rubydoc.info formats correctly

## [0.1.0] - 2024-04-25

- Initial release
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,18 @@ Note: I do not know why initialization is faster for 4 million than 3 million el
- Ruby 3.2.2
- SortedContainers 0.1.0
- SortedSet 1.0.3

### Results (Lower is better)
<img src="benchmark/initialize_performance_comparison.png" width="50%">
<img src="benchmark/add_performance_comparison.png" width="50%">
<img src="benchmark/delete_performance_comparison.png" width="50%">
<img src="benchmark/iteration_performance_comparison.png" width="50%">
<img src="benchmark/include_performance_comparison.png" width="50%">

<img src="https://github.com/GarrisonJ/sorted_containers/blob/main/benchmark/initialize_performance_comparison.png?raw=true" width="50%">

<img src="https://github.com/GarrisonJ/sorted_containers/blob/main/benchmark/add_performance_comparison.png?raw=true" width="50%">

<img src="https://github.com/GarrisonJ/sorted_containers/blob/main/benchmark/delete_performance_comparison.png?raw=true" width="50%">

<img src="https://github.com/GarrisonJ/sorted_containers/blob/main/benchmark/iteration_performance_comparison.png?raw=true" width="50%">

<img src="https://github.com/GarrisonJ/sorted_containers/blob/main/benchmark/include_performance_comparison.png?raw=true" width="50%">

## Installation

Expand Down
2 changes: 1 addition & 1 deletion lib/sorted_containers/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module SortedContainers
VERSION = "0.1.0"
VERSION = "0.1.1"
end

0 comments on commit 969fea0

Please sign in to comment.