Skip to content
This repository has been archived by the owner on Oct 30, 2021. It is now read-only.

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Feb 1, 2017
1 parent f8b3274 commit 1f579e8
Show file tree
Hide file tree
Showing 17 changed files with 211 additions and 163 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.8.1] - 2017-02-01
### Added
- `--group-by-style` can group by `transform` now.
- `--remove-needless-attributes` and `--remove-default-attributes`
Expand Down Expand Up @@ -196,7 +198,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- First public release with Perl backend and Qt GUI.

[Unreleased]: https://github.com/RazrFalcon/svgcleaner/compare/v0.8.0...HEAD
[Unreleased]: https://github.com/RazrFalcon/svgcleaner/compare/v0.8.1...HEAD
[0.8.1]: https://github.com/RazrFalcon/svgcleaner/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/RazrFalcon/svgcleaner/compare/v0.7.1...v0.8.0
[0.7.1]: https://github.com/RazrFalcon/svgcleaner/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/RazrFalcon/svgcleaner/compare/v0.6.91...v0.7.0
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "svgcleaner"
version = "0.8.0"
version = "0.8.1"
authors = ["Evgeniy Reizner <[email protected]>"]
keywords = ["svg", "cleaner", "optimizer"]
license = "GPL-2.0"
Expand All @@ -15,11 +15,11 @@ travis-ci = { repository = "https://github.com/RazrFalcon/svgcleaner" }

[dependencies.svgdom]
# latest
git = "https://github.com/RazrFalcon/libsvgdom.git"
# git = "https://github.com/RazrFalcon/libsvgdom.git"
# local copy
# path = "../svgdom"
# from crates
# version = "=0.3.0"
version = "=0.3.1"

[dependencies.clap]
version = "=2.20.0"
Expand All @@ -32,9 +32,9 @@ cli-parsing = ["clap"]

# makes it 5-10% faster, but very slow to compile
# use only for main releases
# [profile.release]
# opt-level = 3
# lto = true
[profile.release]
opt-level = 3
lto = true

[lib]
name = "libsvgcleaner"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,33 +67,33 @@ All stats was collected using the latest release version.

*Less is better.*

![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.0/docs/images/correctness_chart_W3C_SVG_11_TestSuite.svg)
![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.1/docs/images/correctness_chart_W3C_SVG_11_TestSuite.svg)

\* Most of the errors are due to incorrect `font-face` processing. Not font-based errors:
- `svgo`: 100
- `scour`: 78

![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.0/docs/images/correctness_chart_oxygen.svg)
![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.1/docs/images/correctness_chart_oxygen.svg)

\* Errors produced by the numeric rounding are ignored.

### Cleaning ratio

*More is better.*

![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.0/docs/images/ratio_chart_W3C_SVG_11_TestSuite.svg)
![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.1/docs/images/ratio_chart_W3C_SVG_11_TestSuite.svg)

\* Note that `svgo` and `scour` breaks most of the files.

![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.0/docs/images/ratio_chart_oxygen.svg)
![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.1/docs/images/ratio_chart_oxygen.svg)

### Cleaning time

*Less is better.*

![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.0/docs/images/performance_chart_W3C_SVG_11_TestSuite.svg)
![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.1/docs/images/performance_chart_W3C_SVG_11_TestSuite.svg)

![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.0/docs/images/performance_chart_oxygen.svg)
![Alt text](https://cdn.rawgit.com/RazrFalcon/svgcleaner/v0.8.1/docs/images/performance_chart_oxygen.svg)

### Other

Expand Down
53 changes: 30 additions & 23 deletions docs/images/correctness_chart_W3C_SVG_11_TestSuite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 33 additions & 24 deletions docs/images/correctness_chart_oxygen.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 33 additions & 26 deletions docs/images/performance_chart_W3C_SVG_11_TestSuite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 1f579e8

Please sign in to comment.