Author: cutting
Date: Fri Oct 7 21:00:23 2011
New Revision: 1180239
URL: http://svn.apache.org/viewvc?rev=1180239&view=rev
Log:
AVRO-871. Fix specification to state that enum symbol names must follow the
same rules as record and field names.
Modified:
avro/trunk/CHANGES.txt
avro/trunk/doc/src/content/xdocs/spec.xml
Modified: avro/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=1180239&r1=1180238&r2=1180239&view=diff
==============================================================================
--- avro/trunk/CHANGES.txt (original)
+++ avro/trunk/CHANGES.txt Fri Oct 7 21:00:23 2011
@@ -135,6 +135,9 @@ Avro 1.6.0 (unreleased)
AVRO-914. Java: Fix SpecificResponder to better handle
non-Exception Throwables. (philz via cutting)
+ AVRO-871. Fix specification to state that enum symbol names must
+ follow the same rules as record and field names. (cutting)
+
Avro 1.5.4 (12 September 2011)
IMPROVEMENTS
Modified: avro/trunk/doc/src/content/xdocs/spec.xml
URL:
http://svn.apache.org/viewvc/avro/trunk/doc/src/content/xdocs/spec.xml?rev=1180239&r1=1180238&r2=1180239&view=diff
==============================================================================
--- avro/trunk/doc/src/content/xdocs/spec.xml (original)
+++ avro/trunk/doc/src/content/xdocs/spec.xml Fri Oct 7 21:00:23 2011
@@ -246,7 +246,8 @@
a <em>fullname</em> that is composed of two parts;
a <em>name</em> and a <em>namespace</em>. Equality of names
is defined on the fullname.</p>
- <p>The name portion of a fullname, and record field names must:</p>
+ <p>The name portion of a fullname, record field names, and
+ enum symbols must:</p>
<ul>
<li>start with <code>[A-Za-z_]</code></li>
<li>subsequently contain only <code>[A-Za-z0-9_]</code></li>