Skip to content

chore: cleanup #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 32 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
2c138b4
Merge pull request #34 from vihu/rg/to-html
alceal Jan 7, 2025
14e2dd9
docs: Add implemented plots overview with examples to README
alceal Jan 7, 2025
1857d9d
chore: Bump plotlars version to 0.8.1 in Cargo files
alceal Jan 7, 2025
ccfcf90
chore: Update CHANGELOG for version 0.8.1 with new features and docum…
alceal Jan 7, 2025
f2294ce
Update to polars 0.46
sharifhsn Apr 5, 2025
59e1d23
Merge pull request #37 from sharifhsn/pl46
alceal Apr 7, 2025
5024eab
chore: Update Rust version and edition and bon crate
alceal Apr 19, 2025
66f8a29
Merge pull request #38 from alceal:update-crates
alceal Apr 20, 2025
6fdd279
chore: remove fmt hook
alceal Apr 24, 2025
4ce49ba
feat: add Contour plot
alceal Apr 24, 2025
5f11330
chore: add fmt
alceal Apr 24, 2025
c579f43
Revert "chore: add fmt"
alceal Apr 24, 2025
2d532f0
chore: format imports
alceal Apr 24, 2025
7d3cda9
Merge pull request #39 from alceal:feature/contour
alceal Apr 24, 2025
6d8d81a
chore: refactor dataframe from documentation
alceal Apr 25, 2025
4f42951
feat: add Sankey diagram
alceal Apr 25, 2025
8071f1e
chore: format code
alceal Apr 25, 2025
a936d8b
Merge pull request #40 from alceal:feature/sankeyplot
alceal Apr 25, 2025
8d3861a
chore: remove empty line
alceal Apr 25, 2025
6cbc145
refactor: remove contours struct
alceal Apr 25, 2025
ff31cd2
Merge pull request #41 from alceal:update-contour
alceal Apr 26, 2025
ace8b03
feat: add surface plot
alceal Apr 26, 2025
0ad4425
chore: update with the new plots
alceal Apr 26, 2025
667616d
chore: update bon
alceal Apr 26, 2025
462f32d
Merge pull request #42 from alceal:feature/surfaceplot
alceal Apr 26, 2025
6e9dafd
feat: add the secundary y axis
alceal Apr 27, 2025
a61bb25
chore: update documentation
alceal Apr 27, 2025
8649fe9
chore: update
alceal Apr 27, 2025
bed1fc7
Merge pull request #43 from alceal:feature/add-axis2
alceal Apr 27, 2025
2961bf0
chore: update CHANGELOG
alceal Apr 27, 2025
b313c9e
chore: update version
alceal Apr 27, 2025
d1869b5
chore: cleanup
Oughie Apr 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@ repos:
- repo: https://github.com/doublify/pre-commit-rust
rev: v1.0
hooks:
- id: fmt
- id: cargo-check
- id: clippy
- id: clippy
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,43 @@

All notable changes to this project will be documented in this file.

## [0.9.0] - 2025-04-27

### 🚀 Features

- Add Contour plot
- Add Sankey diagram
- Add surface plot
- Add the secondary y axis

### 🚜 Refactor

- Remove contours struct

### 📚 Documentation

- Add implemented plots overview with examples to README

### ⚙️ Miscellaneous Tasks

- Bump plotlars version to 0.8.1 in Cargo files
- Update CHANGELOG for version 0.8.1 with new features and documentation
- Update Rust version and edition and bon crate
- Remove fmt hook
- Add fmt
- Format imports
- Refactor dataframe from documentation
- Format code
- Remove empty line
- Update with the new plots
- Update bon
- Update documentation
- Update

### Feat

- Additional trait methods to provide html string

## [0.8.0] - 2025-01-05

### 🚀 Features
Expand All @@ -21,6 +58,7 @@ All notable changes to this project will be documented in this file.
- Update dependencies to latest versions
- Add image
- Clean up comments in PieChart builder example for clarity
- Bump plotlars version to 0.8.0 in Cargo files

## [0.7.0] - 2024-11-06

Expand Down
Loading