[Rt-commit] [svn] r1362 - in RT-Client: . lib/RT

autrijus at pallas.eruditorum.org autrijus at pallas.eruditorum.org
Wed Aug 25 13:16:19 EDT 2004


Author: autrijus
Date: Wed Aug 25 13:16:19 2004
New Revision: 1362

Modified:
   RT-Client/   (props changed)
   RT-Client/Changes
   RT-Client/META.yml
   RT-Client/Makefile.PL
   RT-Client/lib/RT/Client.pm
Log:
* This be 0.01, first non-developer release on CPAN.


Modified: RT-Client/Changes
==============================================================================
--- RT-Client/Changes	(original)
+++ RT-Client/Changes	Wed Aug 25 13:16:19 2004
@@ -1,3 +1,8 @@
+[Changes for 0.01 - August 26, 2004]
+
+Change all MIME types from application/x.atom+xml to 
+application/atom+xml due to the IETF-AtomWG's recommendations.
+
 [Changes for 0.00_04 - August 4, 2004]
 
 Add first draft of MIMEObj handling for ->update.

Modified: RT-Client/META.yml
==============================================================================
--- RT-Client/META.yml	(original)
+++ RT-Client/META.yml	Wed Aug 25 13:16:19 2004
@@ -1,5 +1,5 @@
 name: RT-Client
-version: 0.00_04
+version: 0.01
 abstract: A client of RT from Best Practical Solutions
 author: Autrijus Tang <autrijus at autrijus.org>
 license: perl

Modified: RT-Client/Makefile.PL
==============================================================================
--- RT-Client/Makefile.PL	(original)
+++ RT-Client/Makefile.PL	Wed Aug 25 13:16:19 2004
@@ -3,15 +3,6 @@
 use strict;
 use inc::Module::Install;
 
-warn << '.';
-### PLEASE NOTE ##############################################
-
-This is *PRE-ALPHA* code.  Using this module for anything
-(except for learning purporses) is strongly discouraged.
-
-##############################################################
-.
-
 name		('RT-Client');
 author		('Autrijus Tang <autrijus at autrijus.org>');
 abstract	('A client of RT from Best Practical Solutions');

Modified: RT-Client/lib/RT/Client.pm
==============================================================================
--- RT-Client/lib/RT/Client.pm	(original)
+++ RT-Client/lib/RT/Client.pm	Wed Aug 25 13:16:19 2004
@@ -1,7 +1,7 @@
 package RT::Client;
 
 use 5.006;
-our $VERSION = '0.00_04';
+our $VERSION = '0.01';
 our @ISA = 'XML::Atom::Client';
 
 =head1 NAME
@@ -10,8 +10,8 @@
 
 =head1 VERSION
 
-This document describes version 0.00_04 of RT::Client,
-released August 4, 2004.
+This document describes version 0.01 of RT::Client,
+released August 26, 2004.
 
 =head1 SYNOPSIS
 
@@ -101,7 +101,8 @@
     $req->header(
         'Accept' => join(
             ', ',
-            'application/x.atom+xml', 'application/xml', 'text/xml', '*/*',
+            'application/atom+xml', 'application/x.atom+xml',
+            'application/xml', 'text/xml', '*/*',
         )
     );
     $req->header(


More information about the Rt-commit mailing list