Skip to content

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deven committed Dec 14, 2020
1 parent eda5faf commit 6b56333
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,27 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

<!-- insertion marker -->
## [v0.1.0](https://github.com/deven/PDF-Data/releases/tag/v0.1.0) - 2020-12-14

<small>[Compare with v0.0.1](https://github.com/deven/PDF-Data/compare/v0.0.1...v0.1.0)</small>

### Added

- Add clone() method. ([17c4920](https://github.com/deven/PDF-Data/commit/17c4920c6ac299a41c132e1be45533ca33759574) by Deven T. Corzine).
- Add new_bbox() and method examples. ([70468f7](https://github.com/deven/PDF-Data/commit/70468f778c1aef985c0fe50ec3b78c251a223d2b) by Deven T. Corzine).
- Add is_hash/is_array/is_stream utility functions. ([20fc11c](https://github.com/deven/PDF-Data/commit/20fc11cbb779475f5019a2ae2b3a76b76be27040) by Deven T. Corzine).

### Fixed

- Fix handling of page count for append_page(). ([c27a915](https://github.com/deven/PDF-Data/commit/c27a9152fae719692e2301b48db045088ff15fb2) by Deven T. Corzine).
- Fix dump_outline() method. ([e71e73c](https://github.com/deven/PDF-Data/commit/e71e73cddc3f89788b2b3fa9761bc916cd0d571f) by Deven T. Corzine).
- Fix enumerate_shared_objects() ancestor check. ([f28b517](https://github.com/deven/PDF-Data/commit/f28b517b98c47e1f96a1b6bcc9117b4026efd20b) by Deven T. Corzine).

## [v0.0.1](https://github.com/deven/PDF-Data/releases/tag/v0.0.1) - 2020-11-17

<small>[Compare with first commit](https://github.com/deven/PDF-Data/compare/6ad3a9f60a6edbc412e607f04a5741982bc1d96c...v0.0.1)</small>
<small>[Compare with first commit](https://github.com/deven/PDF-Data/compare/d9eacbf5f7c61f4c1b8bad152d5d814cb10a1c7d...v0.0.1)</small>

### Added

- Add initial version of PDF::Data module. (v0.0.1) ([6ad3a9f](https://github.com/deven/PDF-Data/commit/6ad3a9f60a6edbc412e607f04a5741982bc1d96c) by Deven T. Corzine).
- Add initial version of PDF::Data module. (v0.0.1) ([d9eacbf](https://github.com/deven/PDF-Data/commit/d9eacbf5f7c61f4c1b8bad152d5d814cb10a1c7d) by Deven T. Corzine).

4 changes: 2 additions & 2 deletions lib/PDF/Data.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings FATAL => 'all';
use utf8;

# Declare module version. (Also in pod documentation below.)
use version; our $VERSION = version->declare('v0.0.1');
use version; our $VERSION = version->declare('v0.1.0');

# Initialize modules.
use mro;
Expand Down Expand Up @@ -907,7 +907,7 @@ PDF::Data - Manipulate PDF files and objects as data structures
=head1 VERSION
version v0.0.1
version v0.1.0
=head1 SYNOPSIS
Expand Down

0 comments on commit 6b56333

Please sign in to comment.