Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
yuankunzhang committed Jul 23, 2023
1 parent 9a73c02 commit d8dc98c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Highlights:

- Easy-to-use, declaritive API.
- Abundant chart types with rich and customizable chart themes and styles.
- Usable in WebAssembly environments.
- Ready to use in WebAssembly environments.
- Rendering to multiple formats, including HTML, SVG, PNG, JPEG, GIF, WEBP, PNM, TIFF, TGA, DDS, BMP, ICO, HDR, OPENEXR, FARBFELD, AVIF, and QOI.

## Themes
Expand Down
2 changes: 1 addition & 1 deletion charming/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "charming"
description = "A visualization library for Rust"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
authors = ["Yuankun Zhang <[email protected]>"]
homepage = "https://github.com/yuankunzhang/echarts-rs"
Expand Down
5 changes: 5 additions & 0 deletions gallery/src/images.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ fn main() {
let mut renderer = ImageRenderer::new(600, 450);

for (key, value) in CHARTS.iter() {
// Not yet supported by SSR.
if let "aria" = *key {
continue;
}

let dir = output_dir.join(key);
std::fs::create_dir_all(&dir).unwrap();
for (name, chart) in value.iter() {
Expand Down

0 comments on commit d8dc98c

Please sign in to comment.