Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deven committed Jun 27, 2024
1 parent 0e34ebc commit fe7d81f
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ 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 -->
## [v1.1.0](https://github.com/deven/PDF-Data/releases/tag/v1.1.0) - 2024-06-27

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

### Added

- Add validation of stream types and errors for object/xref streams. ([2b54422](https://github.com/deven/PDF-Data/commit/2b54422fd7fd617318ac9039e70d8e655694df62) by Deven T. Corzine).

### Fixed

- Fix XObject validation to accept any XObject subtype. ([12fa3a6](https://github.com/deven/PDF-Data/commit/12fa3a69eb87af77c0151949fd86d11adcb811b8) by Deven T. Corzine).
- Fix PDF recognition regex to allow trailing whitespace on the %PDF line. ([4697c58](https://github.com/deven/PDF-Data/commit/4697c5832421659cc124bb73a609a3dccace811b) by Deven T. Corzine).
- Fix minor errors in hardcoded strings. ([70e161e](https://github.com/deven/PDF-Data/commit/70e161e75c387e25cc52febbd7564bed7c32f2f5) by Deven T. Corzine).

## [v1.0.1](https://github.com/deven/PDF-Data/releases/tag/v1.0.1) - 2022-07-02

<small>[Compare with v1.0.0](https://github.com/deven/PDF-Data/compare/v1.0.0...v1.0.1)</small>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PDF::Data - Manipulate PDF files and objects as data structures

# VERSION

version v1.0.1
version v1.1.0

# SYNOPSIS

Expand Down
2 changes: 1 addition & 1 deletion bin/pdf_data
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use v5.16;
use warnings;

# Program version.
use version; our $version = version->declare('v1.0.1');
use version; our $version = version->declare('v1.1.0');

# Initialize modules.
use File::Basename qw[basename dirname];
Expand Down
4 changes: 2 additions & 2 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name = PDF-Data
author = Deven T. Corzine <[email protected]>
license = MIT
copyright_holder = Deven T. Corzine, IntelliTree Solutions LLC
copyright_year = 2022
copyright_year = 2024

version = v1.0.1
version = v1.1.0

[@Starter]
[@Git]
Expand Down
Binary file added dist/PDF-Data-v1.1.0.tar.gz
Binary file not shown.
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;
use utf8;

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

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

0 comments on commit fe7d81f

Please sign in to comment.