Skip to content

Commit

Permalink
uprev docs and CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
pryrt committed Apr 3, 2021
1 parent 692ab3e commit 65bdbdd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for Perl distribution Win32-Mechanize-NotepadPlusPlus

v0.007 2021-Apr-03
- Update Editor object for the Notepad++ 7.9.4 update to
Scintilla v4.4.6

v0.006001 2021-Mar-07
- meta fix: turn off the auto-download on smoke tester machines,
because it was causing fails
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ t/xtra.t
xt/00-sign.t
xt/pod-test.t
xt/sci-autogen.t
xt/sci-multiedge.t
2 changes: 1 addition & 1 deletion lib/Win32/Mechanize/NotepadPlusPlus.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use Exporter 'import';
use Carp;

our $VERSION = '0.006001'; # rrr.mmmsss : rrr is major revision; mmm is minor revision; sss is sub-revision (new feature path or bugfix); optionally use _sss instead, for alpha sub-releases
our $VERSION = '0.007'; # rrr.mmmsss : rrr is major revision; mmm is minor revision; sss is sub-revision (new feature path or bugfix); optionally use _sss instead, for alpha sub-releases

use Win32::Mechanize::NotepadPlusPlus::Notepad ':vars';
use Win32::Mechanize::NotepadPlusPlus::Editor ':vars';
Expand Down
2 changes: 1 addition & 1 deletion lib/Win32/Mechanize/NotepadPlusPlus/Editor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Win32::Mechanize::NotepadPlusPlus::Editor::Messages; # exports %SCIMSG, whi
use utf8; # there are UTF8 arrows throughout the source code (in POD and strings)
use Config;

our $VERSION = '0.006001'; # auto-populated from W::M::NPP
our $VERSION = '0.007'; # auto-populated from W::M::NPP

our @EXPORT_VARS = (@Win32::Mechanize::NotepadPlusPlus::Editor::Messages::EXPORT);
our @EXPORT_OK = (@EXPORT_VARS);
Expand Down
2 changes: 1 addition & 1 deletion lib/Win32/Mechanize/NotepadPlusPlus/Notepad.pm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ BEGIN {
Win32::API::->Import("psapi","BOOL EnumProcessModules(HANDLE hProcess, HMODULE *lphModule, DWORD cb, LPDWORD lpcbNeeded)") or die "EnumProcessModules: $^E"; # uncoverable branch true
}

our $VERSION = '0.006001'; # auto-populated from W::M::NPP
our $VERSION = '0.007'; # auto-populated from W::M::NPP

our @EXPORT_VARS = (@Win32::Mechanize::NotepadPlusPlus::Notepad::Messages::EXPORT);

Expand Down

0 comments on commit 65bdbdd

Please sign in to comment.