Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deven committed Jul 24, 2024
1 parent 7e6b9f8 commit be66479
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ 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.2.0](https://github.com/deven/PDF-Data/releases/tag/v1.2.0) - 2024-07-24

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

### Added

- Add support for inline image data in content streams. ([7e6b9f8](https://github.com/deven/PDF-Data/commit/7e6b9f88f95961ba1b1d68dfacac980911cdd625) by Deven T. Corzine).
- Add "CMap" as a recognized stream type. ([e16ea59](https://github.com/deven/PDF-Data/commit/e16ea593aedb1cb9873c5e643bae5f6274cf4de6) by Deven T. Corzine).
- Add missing single quote to timestamp() output. ([43b3999](https://github.com/deven/PDF-Data/commit/43b3999c0c31ef38f5202edc913050613db5f69e) by Deven T. Corzine).

## [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>
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.1.0
version v1.2.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.1.0');
use version; our $version = version->declare('v1.2.0');

# Initialize modules.
use File::Basename qw[basename dirname];
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ license = MIT
copyright_holder = Deven T. Corzine, IntelliTree Solutions LLC
copyright_year = 2024

version = v1.1.0
version = v1.2.0

[@Starter]
[@Git]
Expand Down
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.1.0');
use version; our $VERSION = version->declare('v1.2.0');

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

0 comments on commit be66479

Please sign in to comment.