Skip to content

Commit ad901fc

Browse files
author
David Baynard
committed
Merge branch 'develop'
* develop: Rust CI with github actions Cut release 0.1.1 Fix errors from upgrades (mainly to lopdf 0.24.0) Remove (superfluous) extra::lopdf module Bump lock file Add missing num-traits dependency Bump all dependencies Build with cargo 1.44 Switch unused doc comments to normal comments Replace trait objects with impl Update changelog post-release
2 parents 55f8074 + 37f706e commit ad901fc

File tree

9 files changed

+539
-308
lines changed

9 files changed

+539
-308
lines changed

.github/workflows/rust.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Build
20+
run: cargo build --verbose
21+
- name: Run tests
22+
run: cargo test --verbose

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
4+
## [0.1.1] — 2020-06-21
5+
6+
- Builds without warnings with Cargo 1.4.4
7+
- Upgrades dependencies
8+
39
## [0.1.0] — 2018-01-10
410

511
- Initial version
12+
13+
[0.1.1]: https://github.com/dbaynard/booklet/compare/0.1.0...0.1.1
14+
[0.1.0]: https://github.com/dbaynard/booklet/tree/0.1.0

0 commit comments

Comments
 (0)