Skip to content

Commit

Permalink
Update documentations for v0.5.0 release (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
t28hub authored Aug 13, 2024
1 parent d416809 commit ca9ca46
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [v0.5.0](https://github.com/t28hub/auto-palette/releases/tag/v0.5.0)

* Improve the scoring formula and criteria for better color selection.
* Enhance documentation of `auto-palette-cli`.

## [v0.4.0](https://github.com/t28hub/auto-palette/releases/tag/v0.4.0)

* Introduce support for color format conversion to `CMYK`, `ANSI16`, and `ANSI256`.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ members = ["crates/*"]

[workspace.package]
edition = "2021"
version = "0.4.0"
version = "0.5.0"
authors = ["Tatsuya Maki <t28oogle@gmail.com>"]
license = "MIT"
homepage = "https://github.com/t28hub/auto-palette"
repository = "https://github.com/t28hub/auto-palette"

[workspace.dependencies]
assert_cmd = "2.0.14"
auto-palette = { version = "0.4.0", path = "crates/auto-palette", default-features = false }
auto-palette = { version = "0.5.0", path = "crates/auto-palette", default-features = false }
clap = { version = "4.5.4", features = ["cargo"] }
getrandom = "0.2.15"
image = "0.25.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To use `auto-palette` in your Rust project, add it to your `Cargo.toml`.

```toml
[dependencies]
auto-palette = "0.4.0"
auto-palette = "0.5.0"
```

### CLI
Expand Down
4 changes: 3 additions & 1 deletion crates/auto-palette-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "auto-palette-wasm"
description = "🎨 A WebAssembly binding for auto-palette, allowing it to automatically extract color palettes from images."
readme = "../../README.md"
readme = "./README.md"
categories = ["wasm", "multimedia::images", "graphics", "algorithms"]
keywords = ["palette", "color", "image", "color-palette", "webassembly"]
edition.workspace = true
Expand All @@ -10,10 +10,12 @@ authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true

# `cargo msrv` does not support `rust-version.workspace` yet.
# https://github.com/foresterre/cargo-msrv/issues/590
rust-version = "1.75.0"


[lib]
crate-type = ["cdylib", "rlib"]

Expand Down
2 changes: 1 addition & 1 deletion crates/auto-palette/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Using `auto-palette` in your Rust project, add it to your `Cargo.toml`.

```toml
[dependencies]
auto-palette = "0.4.0"
auto-palette = "0.5.0"
```

## Usage
Expand Down

0 comments on commit ca9ca46

Please sign in to comment.