File: changelog

package info (click to toggle)
libcatalyst-perl 5.90114-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,068 kB
  • ctags: 1,490
  • sloc: perl: 13,413; makefile: 7
file content (955 lines) | stat: -rw-r--r-- 31,817 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
libcatalyst-perl (5.90114-1) unstable; urgency=medium

  [ gregor herrmann ]
  * Remove Jonathan Yu from Uploaders. Thanks for your work!
  * Remove Jotam Jr. Trejo from Uploaders. Thanks for your work!

  [ Nick Morrott ]
  * Import upstream version 5.90114

 -- Nick Morrott <knowledgejunkie@gmail.com>  Wed, 21 Dec 2016 19:48:37 +0000

libcatalyst-perl (5.90112-1) unstable; urgency=medium

  * Import upstream version 5.90112.
  * Drop spelling.patch (applied upstream)

 -- Nick Morrott <knowledgejunkie@gmail.com>  Thu, 28 Jul 2016 23:41:18 +0100

libcatalyst-perl (5.90111-1) unstable; urgency=medium

  * Team upload

  [ Salvatore Bonaccorso ]
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.

  [ Salvatore Bonaccorso ]
  * debian/control: Remove Franck Joncourt from Uploaders.
    Thanks to Tobias Frost (Closes: #831287)

  [ Nick Morrott ]
  * Import upstream version 5.90111.
  * Remove unnecessary versioned dependencies and resort (cme fix)
  * Bump Standards-Version to 3.9.8 (no changes)
  * Update spelling.patch (sent upstream)
  * d/copyright: Update email addresses for Kieren Diment and Will Hawes (duck)

  [ gregor herrmann ]
  * autopkgest: enable more smoke tests.

 -- Nick Morrott <knowledgejunkie@gmail.com>  Sun, 24 Jul 2016 23:42:45 +0100

libcatalyst-perl (5.90103-1) unstable; urgency=medium

  * Import upstream version 5.90103.
  * Drop man-whatis.patch, merged upstream.
  * Make (build) dependency on libnamespace-autoclean-perl versioned.
  * Add a patch to fix a typo in the POD.

 -- gregor herrmann <gregoa@debian.org>  Sun, 22 Nov 2015 15:33:18 +0100

libcatalyst-perl (5.90102-1) unstable; urgency=medium

  * Import upstream version 5.90102.
  * Drop spelling.patch, merged upstream.

 -- gregor herrmann <gregoa@debian.org>  Sat, 31 Oct 2015 17:47:46 +0100

libcatalyst-perl (5.90101-1) unstable; urgency=medium

  * Import upstream version 5.90101.
  * Refresh spelling.patch (offset).

 -- gregor herrmann <gregoa@debian.org>  Sun, 18 Oct 2015 15:08:00 +0200

libcatalyst-perl (5.90097-1) unstable; urgency=medium

  [ Axel Beckert ]
  * debian/copyright: Update Chisel Wright's e-mail address. Issue
    reported by DUCK.

  [ gregor herrmann ]
  * Import upstream version 5.90097
    Fixes "FTBFS: t/aggregate/live_engine_request_parameters.t fails"
    (Closes: #795202)
  * Update years of upstream and packaging copyright.
  * Update debian/patches/man-whatis.patch.
    The POD error was moved into a different file, so adjust our patch.
  * Update versioned (build) dependencies.
  * Add a note about encoding changes to debian/NEWS.
  * Bump debhelper compatibility level to 9.
  * Add a patch to fix some spelling mistakes in the POD.
  * Mark package as autopkgtest-able.
  * Add explicit (build) dependency on libcgi-pm-perl.
  * Add additional optional packages to Build-Depends-Indep and Suggests.

 -- gregor herrmann <gregoa@debian.org>  Wed, 12 Aug 2015 12:16:42 +0200

libcatalyst-perl (5.90075-2) unstable; urgency=medium

  * Team upload
  * Remove obsolete build-dependency on libcatalyst-engine-psgi-perl
    This allows for libcatalyst-engine-psgi-perl to be removed from the
    archive. (Closes: #769093)
    Thanks to Simon McVittie

 -- Damyan Ivanov <dmn@debian.org>  Wed, 12 Nov 2014 08:00:40 +0000

libcatalyst-perl (5.90075-1) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend

  [ gregor herrmann ]
  * Add debian/upstream/metadata
  * Imported upstream version 5.90075
  * (Build-) depend on perl 5.15.8 to get Carp 1.25.
  * Declare compliance with Debian Policy 3.9.6.

 -- gregor herrmann <gregoa@debian.org>  Wed, 08 Oct 2014 21:10:47 +0200

libcatalyst-perl (5.90071-1) unstable; urgency=medium

  * Team Upload
  * Imported Upstream version 5.90071
  * add a patch fixing NAME section of Catalyst::Middleware::Stash POD

 -- Damyan Ivanov <dmn@debian.org>  Wed, 13 Aug 2014 20:35:13 +0000

libcatalyst-perl (5.90065-1) unstable; urgency=medium

  * New upstream release.
  * Add new upstream copyright holder to debian/copyright.

 -- gregor herrmann <gregoa@debian.org>  Fri, 06 Jun 2014 13:30:06 +0200

libcatalyst-perl (5.90064-1) unstable; urgency=medium

  * New upstream release.
  * Update years of packaging copyright.

 -- gregor herrmann <gregoa@debian.org>  Sun, 11 May 2014 15:37:03 +0200

libcatalyst-perl (5.90062-1) unstable; urgency=medium

  [ gregor herrmann ]
  * Drop xz compression for {binary,source} package, set by default by
    dpkg since 1.17.{0,6}.
  * Strip trailing slash from metacpan URLs.

  [ Florian Schlichting ]
  * Import Upstream version 5.90062
  * Update list of upstream contributors, bump copyright years
  * Add (build-)dependencies on newly required plack middlewares

 -- Florian Schlichting <fsfs@debian.org>  Thu, 01 May 2014 22:00:36 +0200

libcatalyst-perl (5.90053-1) unstable; urgency=low

  * Import Upstream versions 5.90051, 5.90053
  * Drop fix-whatis-entry.patch, applied upstream
  * Update upstream (build-)dependencies
  * Swap the order of the Encode dependency alternatives
  * Drop versions on dependencies satisfied in oldstable
  * Declare compliance with Debian Policy 3.9.5

 -- Florian Schlichting <fsfs@debian.org>  Mon, 23 Dec 2013 22:30:58 +0100

libcatalyst-perl (5.90042-2) unstable; urgency=low

  * Conflict/Provide/Replace libcatalyst-plugin-unicode-encoding-perl, whose
    module and manpage we're taking over (Closes: #719430).

 -- Florian Schlichting <fsfs@debian.org>  Sun, 11 Aug 2013 22:32:24 +0200

libcatalyst-perl (5.90042-1) unstable; urgency=low

  * Imported Upstream version 5.90042.
  * Updated list of upstream copyright holders.
  * Updated (build-)dependencies.
  * Added fix-whatis-entry.patch.

 -- Florian Schlichting <fsfs@debian.org>  Thu, 08 Aug 2013 19:38:07 +0200

libcatalyst-perl (5.90030-1) unstable; urgency=low

  [ Salvatore Bonaccorso ]
  * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  * Change search.cpan.org based URIs to metacpan.org based URIs

  [ gregor herrmann ]
  * Move libcatalyst-devel-perl and libfcgi-perl from Recommends to
    Suggests. The former is only needed for development, the second is
    more or less obsolete with PSGI. Thanks to Jonas Smedegaard for the
    bug report. (Closes: #705229)

  [ Florian Schlichting ]
  * Import Upstream version 5.90030.
  * Email change: Florian Schlichting -> fsfs@debian.org
  * Bump Standards-Version to 3.9.4 (no change)
  * Refresh d/copyright: new upstream contributor, years
  * Add/remove (build-)dependencies
  * Add NEWS entry on breaking changes

  [ gregor herrmann ]
  * This release also fixes "FTBFS: tests failed" (closes: #713243).

 -- gregor herrmann <gregoa@debian.org>  Mon, 01 Jul 2013 17:46:14 +0200

libcatalyst-perl (5.90015-1) unstable; urgency=low

  * Team upload.

  [ Jotam Jr. Trejo ]
  * Imported Upstream version 5.90015
    - fixes the FTBFS in libtest-www-mechanize-catalyst-perl (Closes: #681422)
    - fixes Catalyst-Plugin-StackTrace (Closes: #681423)
    - fixes Catalyst-Plugin-Session-State-Cookie (Closes: #681425)
    - fixes Catalyst-Plugin-Unicode-Encoding (Closes: #680816)
  * Added myself to Uploaders and Copyright

  [ intrigeri ]
  * Drop erroneous and harmful Conflicts/Provides/Replaces
    on libcatalyst-controller-actionrole-perl.
    Closes: #683656
  * Add Breaks on libcatalystx-simplelogin-perl (<< 0.17) and
    libcatalyst-actionrole-acl-perl (<< 0.07).

 -- intrigeri <intrigeri@debian.org>  Tue, 17 Jul 2012 19:10:37 -0500

libcatalyst-perl (5.90014-1) unstable; urgency=low

  * Team upload.
  * Imported Upstream version 5.90014

 -- intrigeri <intrigeri@debian.org>  Thu, 28 Jun 2012 00:58:24 +0200

libcatalyst-perl (5.90013-2) unstable; urgency=low

  * Team upload.

  [ gregor herrmann ]
  * Acknowledge the new upstream release merges
    Catalyst::Controller::ActionRole into Catalyst::Controller:
    add Conflicts/Replaces/Provides on
    libcatalyst-controller-actionrole-perl to get rid of the package.

 -- intrigeri <intrigeri@debian.org>  Tue, 26 Jun 2012 05:55:11 +0200

libcatalyst-perl (5.90013-1) unstable; urgency=low

  * Team upload.
  * Imported Upstream version 5.90013

 -- intrigeri <intrigeri@debian.org>  Sat, 23 Jun 2012 21:32:20 +0200

libcatalyst-perl (5.90012-1) unstable; urgency=low

  * Imported Upstream version 5.90012.
  * Bumped dependency on namespace::clean to 0.23, removed dependency on
    B::Hooks::EndOfScope.

 -- Florian Schlichting <fschlich@zedat.fu-berlin.de>  Sun, 03 Jun 2012 12:10:48 +0200

libcatalyst-perl (5.90011-1) unstable; urgency=low

  * Imported Upstream version 5.90011.
  * Bumped years of upstream copyright.
  * Deleted copyright stanza for removed inc/Module/Metadata.pm.

 -- Florian Schlichting <fschlich@zedat.fu-berlin.de>  Fri, 09 Mar 2012 23:44:35 +0100

libcatalyst-perl (5.90010-1) unstable; urgency=low

  * Imported Upstream version 5.90009, 5.90010.
  * Added dependency on libb-hooks-endofscope-perl and liblist-moreutils-perl,
    as well as on modules required to run additional tests.
  * Added copyright stanza for inc/Module/Metadata.pm.
  * Bumped Standards-Version to 3.9.3 (use copyright-format 1.0).
  * Added myself to Uploaders and copyright.

 -- Florian Schlichting <fschlich@zedat.fu-berlin.de>  Mon, 27 Feb 2012 21:48:28 +0100

libcatalyst-perl (5.90007-1) unstable; urgency=low

  * New upstream release.
  * Add a Pre-Depends on dpkg (>= 1.15.6~) for the xz compression.

 -- gregor herrmann <gregoa@debian.org>  Fri, 25 Nov 2011 15:49:38 +0100

libcatalyst-perl (5.90006-1) unstable; urgency=low

  * New upstream release.
  * Bump (build-)dep on libclass-load-perl to >= 0.12.

 -- Ansgar Burchardt <ansgar@debian.org>  Wed, 26 Oct 2011 09:40:26 +0200

libcatalyst-perl (5.90005-1) unstable; urgency=low

  * New upstream release.
  * Add (build-)dep on libclass-load-perl (>= 0.08).
  * Use XZ compression for source and binary packages.

 -- Ansgar Burchardt <ansgar@debian.org>  Sun, 23 Oct 2011 10:38:38 +0200

libcatalyst-perl (5.90004-1) unstable; urgency=low

  * New upstream release.

 -- Ansgar Burchardt <ansgar@debian.org>  Sat, 15 Oct 2011 13:41:36 +0200

libcatalyst-perl (5.90003-1) unstable; urgency=low

  [ Salvatore Bonaccorso ]
  * debian/copyright: Replace DEP5 Format-Specification URL from
    svn.debian.org to anonscm.debian.org URL.

  [ gregor herrmann ]
  * New upstream release.
  * Update build and runtime dependencies.
  * Update copyright holders.
  * Bump debhelper compatibility level to 8.

 -- gregor herrmann <gregoa@debian.org>  Wed, 05 Oct 2011 18:16:54 +0200

libcatalyst-perl (5.80033-1) unstable; urgency=low

  * New upstream release.
  * debian/copyright: Update years of copyright.
  * debian/control: Convert Vcs-* fields to Git.
  * Bump Standards-Version to 3.9.2 (no changes).

 -- Ansgar Burchardt <ansgar@debian.org>  Fri, 29 Jul 2011 18:00:36 +0200

libcatalyst-perl (5.80032-1) unstable; urgency=low

  [ Jonathan Yu ]
  * New upstream release
  * Add libcatalystx-leakchecker-perl to B-D-I and Suggests
  * Note that copyright is held by various contributors, and estimate
    years of copyright based on upstream releases
  * Cleaned up dependencies (put each on their own lines) to make
    diffs more useful

  [ gregor herrmann ]
  * Add perl (>= 5.10.1) as an alternative for libparent-perl.

 -- Jonathan Yu <jawnsy@cpan.org>  Wed, 23 Mar 2011 06:44:55 -0400

libcatalyst-perl (5.80030-1) unstable; urgency=low

  * New upstream release.
  * Breaks: libcatalyst-modules-perl (<< 32~) for
    Catalyst::Plugin::Authentication 0.10010 or earlier.
  * Bump (build-)dep on libmoosex-methodattributes-perl to >= 0.24.
  * libclass-data-inheritable-perl is only a build-time dependency.
  * Update my email address.

 -- Ansgar Burchardt <ansgar@debian.org>  Wed, 05 Jan 2011 12:33:25 +0100

libcatalyst-perl (5.80029-1) unstable; urgency=low

  * New upstream release
    + Fixes warnings with Moose >= 1.15

 -- Jonathan Yu <jawnsy@cpan.org>  Sun, 03 Oct 2010 14:52:30 -0400

libcatalyst-perl (5.80028-1) unstable; urgency=low

  * New upstream release
  * Refer to Debian as "Debian systems" in copyright
  * Add libhtml-parser-perl to B-D-I per upstream (it's used in
    Catalyst::Test, which is used by multiple test scripts)
  * Require libmoosex-getopt-perl 0.30 per upstream

 -- Jonathan Yu <jawnsy@cpan.org>  Sun, 03 Oct 2010 09:32:11 -0400

libcatalyst-perl (5.80025-1) unstable; urgency=low

  * New upstream release.
  * debian/copyright: Refer to /usr/share/common-licenses/GPL-1.
  * Bump Standards-Version to 3.9.1.

 -- Ansgar Burchardt <ansgar@43-1.org>  Thu, 29 Jul 2010 15:32:25 +0900

libcatalyst-perl (5.80024-1) unstable; urgency=low

  [ Jonathan Yu ]
  * New upstream release
  * Now requires Test::Simple 0.88 per upstream
  * Recommends Catalyst::Devel per the message during build
  * No longer conflict with libcatalyst-modules-perl << 1, that version
    has not been in Debian for some time

  [ gregor herrmann ]
  * debian/control: add some more test module to Suggests.
  * debian/rules: remove unused environment variable.

 -- Jonathan Yu <jawnsy@cpan.org>  Sat, 15 May 2010 20:20:36 -0400

libcatalyst-perl (5.80023-1) unstable; urgency=low

  * New upstream release.
  * Add (build-)dep on libdata-optlist-perl.
  * Bump (build-)dep on libcgi-simple-perl to >= 1.109.
  * Bump (build-)dep on libhttp-body-perl to >= 1.06.
  * Bump (build-)dep on libmoose-perl to >= 1.03.
  * Depend on perl (>= 5.10.1) instead of 5.10 for Module::Pluggable 3.9.
  * debian/copyright: Update years of copyright.
  * Remove path fix-pod-spelling.patch: Applied upstream.
  * Add myself to Uploaders.

 -- Ansgar Burchardt <ansgar@43-1.org>  Sat, 08 May 2010 21:01:23 +0900

libcatalyst-perl (5.80022-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Mon, 29 Mar 2010 11:46:54 +0200

libcatalyst-perl (5.80021-1) unstable; urgency=low

  * New upstream release
  * Update copyright information

 -- Jonathan Yu <jawnsy@cpan.org>  Sat, 06 Mar 2010 20:20:38 -0500

libcatalyst-perl (5.80020-1) unstable; urgency=low

  [ Krzysztof Krzyżaniak (eloy) ]
  * Add perl-modules (>= 5.10.0) as alternative to libmodule-pluggable-perl in
    dependencies

  [ Jonathan Yu ]
  * Add dependency on namespace::clean 0.12 (version 0.13 may never
    be uploaded to Debian)
  * Change perl-modules to perl, per policy
  * Standards-Version 3.8.4 (no changes)
  * Add a patch to fix POD spelling
  * Rewrite eloy's NEWS entries slightly
  * Drop dependency versions satisfied in oldstable
  * Update to DEP5 copyright format

  [ Franck Joncourt ]
  * New upstream release
  * Added /me as uploader. Refreshed d.control and d.copyright accordingly.
  * Drop versionned BDI on libtext-simpletable-perl (>=0.03) since this one
    is already in oldstable.
  * Switch to dpkg-source 3.0 (quilt) format:
    + Removed BD on quilt.
    + Do not use --with-quilt option for debhelper anymore.

  [ Ansgar Burchardt ]
  * Remove debian/README.source (use of dpkg-source 3.0 (quilt) format).

 -- Franck Joncourt <franck@debian.org>  Sat, 06 Feb 2010 21:22:19 +0100

libcatalyst-perl (5.80018-1) unstable; urgency=low

  * New upstream release (closes: #560656)
  * debian/control: libmoosex-types-common-perl, libmoosex-getopt-perl 
    added to dependencies  

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Mon, 18 Jan 2010 12:28:07 +0100

libcatalyst-perl (5.80016-1) UNRELEASED; urgency=low

  [ Jonathan Yu ]
  * New upstream release

  [ Krzysztof Krzyżaniak (eloy) ]
  * Added libmoosex-role-withoverloading-perl to dependencies
  
 -- Jonathan Yu <jawnsy@cpan.org>  Tue, 15 Dec 2009 20:38:30 -0500

libcatalyst-perl (5.80013-1) unstable; urgency=low

  * New upstream release

 -- Jonathan Yu <jawnsy@cpan.org>  Wed, 30 Sep 2009 05:06:14 -0400

libcatalyst-perl (5.80012-1) unstable; urgency=low

  [ Jonathan Yu ]
  * New upstream release
    + Catalyst::Engine is now able to send out data from filehandles
      larger than the default chunksize of 64k
    + Fix generation of inner packages inside the COMPONENT method
    + Fix issue with Engine::HTTP not sending headers properly in
      some cases (RT#48623)
    + Add new dependencies on: libmodule-pluggable-perl (>= 3.9)
      and libtask-weaken-perl
  * Use $(TMP) etc for readability in rules
  * Updated copyright information from changelog trailers
  * Standards-Version 3.8.3 (drop version dependency on perl)
  * Bump debhelper dependency down to 7.0.50 to see if it causes
    regressions (this should be the minimal version required)
  * Added myself to Uploaders and Copyright
  * Make the synopsis an "is a" line
  * Cleanups to copyright file

  [ Ryan Niebur ]
  * Update jawnsy's email address

  [ Krzysztof Krzyżaniak (eloy) ]
  * New upstream release

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Mon, 14 Sep 2009 17:19:44 +0200

libcatalyst-perl (5.80007-1) unstable; urgency=low

  * New upstream release
  * debian/control: 
   + update Standards-Version to 3.8.2 without changes
   + added libnamespace-autoclean-perl, libstring-rewriteprefix-perl 
    to dependencies

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Thu, 02 Jul 2009 12:11:54 +0200

libcatalyst-perl (5.80005-1) unstable; urgency=low

  * New upstream release
  * debian/control: increase module version in dependencies for 
    libmoosex-methodattributes-perl (>= 0.12)

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Mon, 08 Jun 2009 12:06:50 +0200

libcatalyst-perl (5.80004-3) UNRELEASED; urgency=low

  * debian/watch: Update to ignore development releases.

 -- Nathan Handler <nhandler@ubuntu.com>  Sat, 06 Jun 2009 01:33:00 +0000

libcatalyst-perl (5.80004-2) unstable; urgency=low

  [ Ansgar Burchardt ]
  * debian/control: Add missing comma in Depends field.
    (Closes: #531228, #531229, #531240)

  [ gregor herrmann ]
  * Minimize debian/rules, bump dh dependency to 7.2.13 for the --skipdeps
    feature.
  * Fix permissions of /usr/share/perl5/Catalyst/Delta.pod.

 -- gregor herrmann <gregoa@debian.org>  Mon, 01 Jun 2009 19:45:08 +0200

libcatalyst-perl (5.80004-1) unstable; urgency=low

  * New upstream release
  * debian/control: increase modules version in dependencies: 
    libmoose-perl (>=0.78), libmoosex-methodattributes-perl (>= 0.10)

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Tue, 19 May 2009 10:22:52 +0200

libcatalyst-perl (5.80003-1) unstable; urgency=low

  * New upstream release
  * debian/control: increase some modules version in dependencies

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Wed, 29 Apr 2009 19:25:36 +0200

libcatalyst-perl (5.80002-1) unstable; urgency=low

  [ Krzysztof Krzyżaniak (eloy) ]
  * New upstream release
  * debian/control: libmoosex-methodattributes-perl and libscope-upper-perl 
   added to dependencies.
  
  [ Ryan Niebur ]
  * Remove Florian Ragwitz from Uploaders (Closes: #523241)

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Wed, 22 Apr 2009 10:10:46 +0200

libcatalyst-perl (5.71001-1) unstable; urgency=low

  * New upstream release.
  * debian/copyright: update years of copyright for files in inc/; some
    formatting updates.
  * Set Standards-Version to 3.8.1 (no changes).
  * Add libmoose-perl to Build-Depends-Indep (enables an additional test).

 -- gregor herrmann <gregoa@debian.org>  Sun, 29 Mar 2009 16:12:04 +0200

libcatalyst-perl (5.71000-2) unstable; urgency=low

  * debian/rules: rename Manual.pm and Catalyst::Manual.3pm to
    Manual/Runtime.pm and Catalyst::Manual::Runtime.3pm respectiveley, as it
    was done in versiones before 5.71000-1; the original files are also in
    libcatalyst-manual-perl; thanks to Ralf Treinen for the bug report
    (closes: #513971).
  * Activate pod{,-coverage} tests by setting TEST_POD in debian/rules.
  * debian/control: add /me to Uploaders and slightly re-phrase last sentence.
  * Add a lintian override for the warning about the extension of catalyst.pl.
  * debian/watch: extended regexp for matching upstream releases.

 -- gregor herrmann <gregoa@debian.org>  Tue, 03 Feb 2009 21:47:23 +0100

libcatalyst-perl (5.71000-1) unstable; urgency=low

  * New upstream release
  * Update to debhelper 7, use simple example as debian/rules
  * Improve debian/copyright file
  * debian/control:
   + Standards-Version updated to 3.8.0 (without changes)
   + Package moved to Debian Perl Group repo

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Tue, 20 Jan 2009 11:29:25 +0100

libcatalyst-perl (5.7014-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Tue, 27 May 2008 13:23:02 +0200

libcatalyst-perl (5.7013-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Mon, 19 May 2008 16:04:18 +0200

libcatalyst-perl (5.7012-7) unstable; urgency=low

  * Bugfix release
  * Update dependencies (closes: #478284) (reported by Abhijit Hoskeri 
    <abhijit@deeproot.co.in>)

 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Wed, 30 Apr 2008 10:31:05 +0200

libcatalyst-perl (5.7012-6) unstable; urgency=low

  * Rename manual files.
  * Remove debian/postrm debian/preinst
  
 -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org>  Sun, 20 Apr 2008 17:39:43 +0200

libcatalyst-perl (5.7012-5) unstable; urgency=low

  * Still fixing dpkg-divert issue
  * debian/control:
   + libcatalyst-engine-apache-perl moved from Recommends to Suggests
  * debian/compat:
   + increased to 6 without changes

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Mon, 11 Feb 2008 11:39:48 +0100

libcatalyst-perl (5.7012-4) unstable; urgency=low

  * debian/preinst: still fixes for #458659

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Sun, 03 Feb 2008 14:27:45 +0100

libcatalyst-perl (5.7012-3) unstable; urgency=low

  * Still fixing bugs with dpkg-divert

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Wed, 09 Jan 2008 10:53:13 +0100

libcatalyst-perl (5.7012-2) unstable; urgency=low

  * fixed dpkg-divert script (closes: #458659)

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Wed, 02 Jan 2008 15:27:03 +0100

libcatalyst-perl (5.7012-1) unstable; urgency=low

  * New upstream release
  * debian/control: Standards-Version increased to 3.7.3 without changes

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Fri, 21 Dec 2007 12:29:39 +0100

libcatalyst-perl (5.7011-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Fri, 19 Oct 2007 16:26:56 +0200

libcatalyst-perl (5.7010-2) unstable; urgency=low

  * Added dpkg-diversion for manual

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Thu, 30 Aug 2007 13:07:22 +0200

libcatalyst-perl (5.7010-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Thu, 30 Aug 2007 11:21:35 +0200

libcatalyst-perl (5.7008-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Mon, 20 Aug 2007 15:06:25 +0200

libcatalyst-perl (5.7007-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Fri, 16 Mar 2007 10:04:30 +0100

libcatalyst-perl (5.7006-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Sat, 18 Nov 2006 00:40:04 +0100

libcatalyst-perl (5.7005-2) unstable; urgency=low

  * Set /usr/share/man/man3/Catalyst::Manual.3pm.gz as alternative

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Fri, 17 Nov 2006 16:57:40 +0100

libcatalyst-perl (5.7005-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Tue,  7 Nov 2006 23:50:35 +0100

libcatalyst-perl (5.7004-1) unstable; urgency=low

  * New upstream release
  * Catalyst::Manual is separated from Catalyst::Runtime, You can find Catalyst::Manual 
    in libcatalyst-modules-perl package

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Tue,  7 Nov 2006 23:04:55 +0100

libcatalyst-perl (5.7003-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Sat, 23 Sep 2006 22:33:29 +0200

libcatalyst-perl (5.7002-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Wed, 20 Sep 2006 17:15:07 +0200

libcatalyst-perl (5.7001-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Tue, 25 Jul 2006 14:21:59 +0200

libcatalyst-perl (5.7000-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Sat,  8 Jul 2006 13:28:33 +0200

libcatalyst-perl (5.69.99-5.70-1) experimental; urgency=low

  * New upstream (experimental) release
  * From now libcatalyst-perl contains only Catalyst::Runtime library,
    Catalyst::Devel is on libcatalyst-modules-package
  * dependencies revisited  

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Tue, 27 Jun 2006 17:26:34 +0200

libcatalyst-perl (5.69.02-1) unstable; urgency=low

  * New upstream release
   - Standards-Version: updated to 3.7.2 without additional changes
   
 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Fri,  5 May 2006 10:12:23 +0200

libcatalyst-perl (5.69.01-1) unstable; urgency=low

  * New upstream release
  * debian/control:
   - Standards-Version: updated to 3.7.0 without additional changes

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Wed,  3 May 2006 21:02:48 +0200

libcatalyst-perl (5.68.2-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Fri, 28 Apr 2006 15:17:32 +0200

libcatalyst-perl (5.67.8-1) unstable; urgency=low

  * New upstream release. Just repackaged 5.67 version with no core changes.

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Tue, 25 Apr 2006 17:51:50 +0200

libcatalyst-perl (5.67-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Mon, 24 Apr 2006 10:42:56 +0200

libcatalyst-perl (5.66-1) unstable; urgency=low

  * New upstream release
  * debian/control - libdata-visitor-perl added to dependencies

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Sat, 11 Mar 2006 11:45:20 +0100

libcatalyst-perl (5.65-2) unstable; urgency=low

  * debian/rules - added -skipdeps to $(PERL) Makefile.PL INSTALLDIRS=vendor 
  * debian/control - added libfile-slurp-perl to Build-Depends-Indep and Depends
    (closes: #354489)

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Sun, 26 Feb 2006 22:44:35 +0100

libcatalyst-perl (5.65-1) unstable; urgency=low

  * New upstream release
  * debian/control - Narrowed dependency from libhttp-request-ascgi-perl to (>= 0.5)

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Thu, 23 Feb 2006 11:14:20 +0100

libcatalyst-perl (5.64-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Wed,  8 Feb 2006 22:16:24 +0100

libcatalyst-perl (5.63-1) unstable; urgency=low

  * New upstream release
  * debian/control - libfcgi-procmanager-perl added to Build-Depends-Indep

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Mon, 23 Jan 2006 10:46:45 +0100

libcatalyst-perl (5.62-1) unstable; urgency=low

  * New upstream release
  * debian/control - libtest-nowarnings-perl added to Build-Depends-Indep

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Tue, 17 Jan 2006 22:48:58 +0100

libcatalyst-perl (5.61-4) unstable; urgency=low

  * debian/control - libpar-perl added to Build-Depends-Indep

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Sun, 15 Jan 2006 20:51:47 +0100

libcatalyst-perl (5.61-3) unstable; urgency=low

  * Just bumping version to get proper upload

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Sat, 17 Dec 2005 19:08:33 +0100

libcatalyst-perl (5.61-2) unstable; urgency=low

  * debian/control - libtemplate-perl added to Build-Depends-Indep
    (closes: #343606)

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Sat, 17 Dec 2005 18:18:58 +0100

libcatalyst-perl (5.61-1) unstable; urgency=low

  * New upstream release
  * debian/control - Build-Depends & Depends added: libmime-types-perl
    (closes: #342123) and libfile-copy-recursive-perl

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Mon,  5 Dec 2005 10:00:30 +0100

libcatalyst-perl (5.58-1) unstable; urgency=low

  * New upstream release
  * debian/control - Build-Depends & Depends added: libextutils-autoinstall-perl 

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Wed, 30 Nov 2005 17:01:56 +0100

libcatalyst-perl (5.57-2) unstable; urgency=low

  * debian/control: libmodule-install-perl added to Depends.

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Wed, 23 Nov 2005 17:14:24 +0100

libcatalyst-perl (5.57-1) unstable; urgency=low

  * New upstream release
  * debian/control - Removed: libmodule-build-perl, Added:
    libmodule-install-perl
  * debian/rules - Rewritten for using libmodule-install-perl  

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Mon, 21 Nov 2005 09:38:51 +0100

libcatalyst-perl (5.56-1) unstable; urgency=low

  * New upstream release
  * debian/control - Updated Build-Depends & Depends fields: 
    added libhttp-request-ascgi-perl, removed libcatalyst-engine-apache-perl &
    liburi-query-perl

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Wed, 16 Nov 2005 13:52:15 +0100

libcatalyst-perl (5.54-1) unstable; urgency=low

  * New upstream release (bugfix release)

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Tue, 15 Nov 2005 10:04:47 +0100

libcatalyst-perl (5.52-1) unstable; urgency=low

  * New upstream release

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Mon, 14 Nov 2005 18:38:34 +0100

libcatalyst-perl (5.51-1) unstable; urgency=low

  * New upstream release
  * debian/control - libuniversal-exports-perl replaced by
    libuniversal-require-perl

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Mon, 14 Nov 2005 09:56:50 +0100

libcatalyst-perl (5.49.04-1) experimental; urgency=low

  * New upstream release

  [Krzysztof Krzyzaniak (eloy)]
  * debian/control: libtext-asciitable-perl replaced by libtext-simpletable-perl

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Thu, 10 Nov 2005 15:32:30 +0100

libcatalyst-perl (5.49.03-2) UNRELEASED; urgency=low

  [Krzysztof Krzyzaniak (eloy)]
  * debian/control: Added libfile-modified-perl into dependencies.
  * (closes: #333123) - Catalyst contains now
    Catalyst::Plugin::Static::Simple module

  [ Florian Ragwitz ]
  * Cleaned up an invalid changelog entry.
  * Removed an old mail address from debian/copyright.
  * Use my new @debian.org address.

 -- Florian Ragwitz <rafl@debian.org>  Sun,  6 Nov 2005 17:42:37 +0100

libcatalyst-perl (5.49.03-1) experimental; urgency=low

  * New upstream release (experimental)
  * debian/control: Added libclass-inspector-perl into dependencies.

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Thu,  3 Nov 2005 21:11:29 +0100

libcatalyst-perl (5.49.02-1) experimental; urgency=low

  * New upstream release (experimental)
  * Added me to Uploaders

 -- Krzysztof Krzyzaniak (eloy) <eloy@debian.org>  Sun, 30 Oct 2005 17:48:33 +0100

libcatalyst-perl (5.33-1) unstable; urgency=low

  * New upstream version (Closes: #322230).
  * New maintainer: Debian Catalyst Maintainers	<pkg-catalyst-maintainers@lists.alioth.debian.org>.
  * Suggests: libtest-pod-perl, libtest-pod-coverage-perl (Closes: #319322).
  * Added Build-Dep in libgfcgi-perl.

 -- Florian Ragwitz <rafl@debianforum.de>  Wed, 10 Aug 2005 15:33:35 +0200

libcatalyst-perl (5.30-1) unstable; urgency=low

  * Initial Release.

 -- Florian Ragwitz <florian@mookooh.org>  Mon, 30 May 2005 17:32:08 +0200