From c21fc7cfb1d8bfd69d9ba8f2040adc2d8030d88b Mon Sep 17 00:00:00 2001 From: PeterCJ Date: Sun, 3 Apr 2022 13:58:23 -0700 Subject: [PATCH] uprev to 0.010; update the docs; update manifest for new tests --- MANIFEST | 2 ++ lib/Win32/Mechanize/NotepadPlusPlus.pm | 2 +- lib/Win32/Mechanize/NotepadPlusPlus/Editor.pm | 2 +- lib/Win32/Mechanize/NotepadPlusPlus/Notepad.pm | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/MANIFEST b/MANIFEST index e7c4bd0..db34bb9 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,3 +1,4 @@ +.github/workflows/perl-ci.yml CHANGES examples/add1.pl examples/forum14944-3.pl @@ -46,6 +47,7 @@ t/npp-err-main.t t/npp-err-npp.t t/npp-files.t t/npp-gui.t +t/npp-macro.t t/npp-menucmd.t t/npp-meta.t t/npp-sci.t diff --git a/lib/Win32/Mechanize/NotepadPlusPlus.pm b/lib/Win32/Mechanize/NotepadPlusPlus.pm index cec310e..f876339 100644 --- a/lib/Win32/Mechanize/NotepadPlusPlus.pm +++ b/lib/Win32/Mechanize/NotepadPlusPlus.pm @@ -5,7 +5,7 @@ use strict; use Exporter 'import'; use Carp; -our $VERSION = '0.009'; # 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.010'; # 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'; diff --git a/lib/Win32/Mechanize/NotepadPlusPlus/Editor.pm b/lib/Win32/Mechanize/NotepadPlusPlus/Editor.pm index f05db6f..96dc488 100644 --- a/lib/Win32/Mechanize/NotepadPlusPlus/Editor.pm +++ b/lib/Win32/Mechanize/NotepadPlusPlus/Editor.pm @@ -11,7 +11,7 @@ use utf8; # there are UTF8 arrows throughout the source code (in POD and strin use Config; require version; -our $VERSION = '0.009'; # auto-populated from W::M::NPP +our $VERSION = '0.010'; # auto-populated from W::M::NPP our @EXPORT_VARS = (@Win32::Mechanize::NotepadPlusPlus::Editor::Messages::EXPORT); our @EXPORT_OK = (@EXPORT_VARS); diff --git a/lib/Win32/Mechanize/NotepadPlusPlus/Notepad.pm b/lib/Win32/Mechanize/NotepadPlusPlus/Notepad.pm index 7ce0a4f..ec59b92 100644 --- a/lib/Win32/Mechanize/NotepadPlusPlus/Notepad.pm +++ b/lib/Win32/Mechanize/NotepadPlusPlus/Notepad.pm @@ -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.009'; # auto-populated from W::M::NPP +our $VERSION = '0.010'; # auto-populated from W::M::NPP our @EXPORT_VARS = (@Win32::Mechanize::NotepadPlusPlus::Notepad::Messages::EXPORT);