Skip to content

Commit

Permalink
Updated CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Feb 5, 2018
1 parent 241593c commit a34a6fe
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

## `0.2.2`

- SVG functionality was removed (commented out), because it didn't work in the first place
and only increased build times. So there's no point in keeping functionality that nobody
ever used, because it didn't work.
- Removed dependency on `num`
- `PdfDocument::save()` now only has a `T: Write` bound instead of `T: Write + Seek`.

## `0.2.1`

- The `document.save()` method now needs a `BufWriter`, to enforce buffered output (breaking change).
- The `PdfDocument` now implements `Clone`, so you can write one document to multiple outputs.
- You can disable the automatic embedding of an ICC profile by using a `CustomPdfConformance`.
See `examples/no_icc.rs` for usage information.
- `set_outline_thickness` now accepts floating-point units
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,13 +209,9 @@ current_layer.begin_text_section();
current_layer.end_text_section();
```

## Upgrading to `0.2.1` / Changelog
## Changelog

- The `document.save()` method now needs a `BufWriter`, to enforce buffered output (breaking change).
- The `PdfDocument` now implements `Clone`, so you can write one document to multiple outputs.
- You can disable the automatic embedding of an ICC profile by using a `CustomPdfConformance`.
See `examples/no_icc.rs` for usage information.
- `set_outline_thickness` now accepts floating-point units
See the CHANGELOG.md file.

## Further reading

Expand Down

0 comments on commit a34a6fe

Please sign in to comment.