Skip to content

Commit

Permalink
2022-02-07 21:14:40 +02:00
Browse files Browse the repository at this point in the history
* Merge PR #7 from @hummingly:
  - Updates dependencies.
  - Fixes a bug where adding keywords would just overwrite/add the Subject
    entry.
  - Changes create_X functions to constructors that are only visible in the
    crate.
  - Improves allocations: removed a few clones, allocate space before
    inserting elements etc.
  - Puts graphicsstates tests into test module which removes dead code
    warning.
  - Overall made more use of the standard library.
* Add keyword "pdf" to crate, PR #6 from @adiba
* Update to Rust edition 2021.
* Update `lazy_static` dependency.
* Use `chrono` 0.4.19 instead of `time` 0.1.
* Update travis build to use more up to date rust versions and stable
  rustfmt.
* Update clippy directive.
* Some rustfmt updates.

Thanks to @hummingly and @adiba!
  • Loading branch information
kaj committed Feb 7, 2022
1 parent 22013e4 commit 71680d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ The format is based on
project tries to adhere to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## Release 0.7.0

2022-02-07 21:14:40 +02:00

* Merge PR #7 from @hummingly:
- Updates dependencies.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pdf-canvas"
version = "0.6.1-PRE"
version = "0.7.0"
authors = ["Simon Sapin <[email protected]>",
"Rasmus Kaj <[email protected]>"]
license = "MIT"
Expand All @@ -9,7 +9,7 @@ Generate PDF files in pure Rust.
Currently, simple vector graphics and text set in the 14 built-in \
fonts are supported."""
categories = ["graphics"]
keywords = ["pdf", "Portable Document Format", "graphics", "vector", "text"]
keywords = ["pdf", "graphics", "vector", "text"]
documentation = "https://docs.rs/pdf-canvas"
repository = "https://github.com/kaj/rust-pdf"
readme = "README.md"
Expand Down

0 comments on commit 71680d6

Please sign in to comment.