diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d43ac0..2cd1d77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.3.0 + - Upgrade to latest NanoSVG + ## 0.2.1 - Fixed some documentation and examples diff --git a/Cargo.toml b/Cargo.toml index ed04f44..078fec6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "nsvg" -version = "0.2.1" +version = "0.3.0" authors = ["nickbrowne "] repository = "https://github.com/nickbrowne/nsvg" -keywords = ["svg"] +keywords = ["svg", "nanosvg"] description = "A simple SVG parser and rasterizer using NanoSVG" license = "Zlib/MIT" readme = "README.md" diff --git a/README.md b/README.md index ea88e59..5ffbf1d 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Include `nsvg` in your `Cargo.toml` dependencies. ```toml [dependencies] -nsvg = "0.2.1" +nsvg = "0.3.0" ``` Now you can parse and rasterize SVGs. Use the scale argument to producer larger or smaller rasterised images. The aspect ratio will remain the same.