From 5d8311589bb72953497f84ad7eea903409cf980c Mon Sep 17 00:00:00 2001 From: Nick Morrott Date: Sun, 7 Feb 2021 22:59:07 +0000 Subject: [PATCH] Prepare for 1.0.0 release --- Changes | 18 ++++++++++++++++++ Makefile.PL | 2 +- README.md | 4 ++-- doc/README.win32 | 47 ++++++++++++++++++++--------------------------- lib/XMLTV.pm.in | 2 +- 5 files changed, 42 insertions(+), 31 deletions(-) diff --git a/Changes b/Changes index 899a7937f..efadf76a1 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,21 @@ +1.0.0 2021-02-07 + + - tv_grab_ch_search: re-enable fixed grabber + - tv_grab_eu_xmltvse: fetch listings over SSL + - tv_grab_fi: many improvements to listings parsers + - tv_grab_na_dtv: fetch listings over SSL + - tv_grab_pt_vodafone: more reliable SSL conections using recent + OpenSSL versions + - tv_grab_uk_tvguide: improvements to XMLTV ID compliance + + - tv_grab_dk_dr: disable grabber (source site gone) + - tv_grab_uk_bleb: disable grabber (source site gone) + + - tv_grep: allow regex filtering on channel ID + - tv_imdb: significant reductions in memory consumption + + - Windows build: migrate to PAR::Packer + 0.6.3 2020-08-22 - tv_grab_ch_search: disable deprecated grabber diff --git a/Makefile.PL b/Makefile.PL index 05b2b0d4b..ca3b6b1af 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -57,7 +57,7 @@ GetOptions('strict-deps' => \$opt_strictdeps, # be strict about dependencies ); our $VERSION; -$VERSION = '0.6.3'; +$VERSION = '1.0.0'; # Fragment of Makefile text to give the directory where files should # be installed. The extra '.' in the middle of the path is to avoid diff --git a/README.md b/README.md index a63b19d52..5e0325e6f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@

-# XMLTV 0.6.3 +# XMLTV 1.0.0 ## Table of Contents @@ -259,4 +259,4 @@ We run the following mailing lists: Finally, we run an IRC channel #xmltv on Freenode. Please join us! --- Nick Morrott, knowledgejunkie@gmail.com, 2020-08-22 +-- Nick Morrott, knowledgejunkie@gmail.com, 2021-02-07 diff --git a/doc/README.win32 b/doc/README.win32 index 4eb56cd24..97bfaaac7 100644 --- a/doc/README.win32 +++ b/doc/README.win32 @@ -1,4 +1,4 @@ -XMLTV 0.6.3, Windows binary release +XMLTV 1.0.0, Windows binary release Gather television listings, process them and organize your viewing. XMLTV is a file format for storing TV listings, defined in xmltv.dtd. @@ -18,35 +18,28 @@ for tv_grab_is and tv_grab_it_dvb, If you need one of those you'll need to install Perl and the necessary modules and use the full distribution. +* Major Changes in this release (1.0.0) + +tv_grab_ch_search: re-enable fixed grabber +tv_grab_eu_xmltvse: fetch listings over SSL +tv_grab_fi: many improvements to listings parsers +tv_grab_na_dtv: fetch listings over SSL +tv_grab_pt_vodafone: more reliable SSL conections using recent + OpenSSL versions +tv_grab_uk_tvguide: improvements to XMLTV ID compliance + +tv_grab_dk_dr: disable grabber (source site gone) +tv_grab_uk_bleb: disable grabber (source site gone) + +tv_grep: allow regex filtering on channel ID +tv_imdb: significant reductions in memory consumption + +Windows build: migrate to PAR::Packer + * Major Changes in this release (0.6.3) tv_grab_ch_search: disable broken grabber -* Major Changes in previous release (0.6.2) - -tv_grab_dotmedia: disable deprecated grabber -tv_grab_se_tvzon: disable deprecated grabber - -tv_grab_dtv_la: disable broken grabber -tv_grab_il: disable broken grabber -tv_grab_pt_meo: disable broken grabber -tv_grab_se_swedb: disable broken grabber - -XMLTV.pm: update handling of reading from STDIN due to - XML::Parser adopting 3-arg open -tv_grab_ch_search: handle upstream cookies -tv_grab_eu_epgdata: various fixes and improvements -tv_grab_fi: various fixes and improvements -tv_grab_fr: update grabber due to upstream changes -tv_grab_huro: use https source site URLs -tv_grab_it: fix overlapping/duplicate programmes -tv_grab_na_dd: use https source site URLs -tv_grab_na_dtv: various fixes and improvements -tv_grab_pt_vodafone: various fixes and improvements -tv_grab_uk_tvguide: various fixes and improvements -tv_grab_zz_sdjson_sqlite: - many fixes and improvements - And many other changes (see the git log for details) There is no installer, just unpack the zipfile into a @@ -111,4 +104,4 @@ Sourceforge hosts the following mailing lists: xmltv-users - how to use XMLTV xmltv-devel - detailed discussions among developers --- Nick Morrott, knowledgejunkie@gmail.com, 2020-08-22 +-- Nick Morrott, knowledgejunkie@gmail.com, 2021-02-07 diff --git a/lib/XMLTV.pm.in b/lib/XMLTV.pm.in index ad340750c..1988a6669 100644 --- a/lib/XMLTV.pm.in +++ b/lib/XMLTV.pm.in @@ -11,7 +11,7 @@ our @EXPORT_OK = qw(read_data parse parsefile parsefiles write_data # the xmltv package as a whole. This number should be checked by the # mkdist tool. # -our $VERSION = '0.6.3'; +our $VERSION = '1.0.0'; # Work around changing behaviour of XML::Twig. On some systems (like # mine) it always returns UTF-8 data unless KeepEncoding is specified.