Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 1f34149679700274d273f929cf13b29a > files > 1084

PyXB-1.1.2-1.fc15.noarch.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Release History &mdash; PyXB v1.1.2 documentation</title>
    <link rel="stylesheet" href="_static/default.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '#',
        VERSION:     '1.1.2',
        COLLAPSE_MODINDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <link rel="top" title="PyXB v1.1.2 documentation" href="index.html" />
    <link rel="next" title="Architecture" href="architecture.html" />
    <link rel="prev" title="Examples" href="examples.html" /> 
  </head>
  <body>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="architecture.html" title="Architecture"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="examples.html" title="Examples"
             accesskey="P">previous</a> |</li>
        <li><a href="index.html">PyXB v1.1.2 documentation</a> &raquo;</li>
    <li style="margin-left: 20px">PyXB hosted on <a href="http://sourceforge.net/projects/pyxb"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=263147&amp;type=9"
    width="80" height="15" alt="Get PyXB: Python XML Schema Bindings at SourceForge.net. Fast, secure and Free Open Source software downloads"/></a></li>
     

      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="release-history">
<span id="releases"></span><h1>Release History<a class="headerlink" href="#release-history" title="Permalink to this headline">¶</a></h1>
<p>The release number of PyXB indicates stability in a way similar to that of
Linux several years ago:</p>
<ul>
<li><p class="first">All releases consist of three non-negative integers</p>
</li>
<li><p class="first">If the second integer is even, the release is considered <em>stable</em>:</p>
<ul class="simple">
<li>All documentation will be current, all supported platforms tested, all
tests pass, all examples verified</li>
<li>Bugs will be fixed if this can be done without changing behavior that
somebody may depend on</li>
<li>No new interface capabilities will be added</li>
</ul>
<p>Releases in a stable series are intended for production applications where
stability is the highest consideration.</p>
</li>
<li><p class="first">If the second integer is odd, the release is considered <em>beta</em>:</p>
<ul class="simple">
<li>Interfaces will change between releases, sometimes significantly</li>
<li>Any given release may fail to pass certain tests or not work on certain
platforms</li>
<li>User and API documentation may be incomplete or incorrect</li>
</ul>
<p>Releases in a beta series are intended for development of new applications
with functionality requirements that cannot be satisfied by the current
stable series.  Users of beta series get increased functionality, but more
pain.  Evolution of a beta series stops upon release of the subsequent
stable series.</p>
</li>
</ul>
<div class="section" id="x-beta">
<h2>1.1.x (Beta)<a class="headerlink" href="#x-beta" title="Permalink to this headline">¶</a></h2>
<div class="section" id="may-2010">
<h3>1.1.2 (30 May 2010)<a class="headerlink" href="#may-2010" title="Permalink to this headline">¶</a></h3>
<p>Complete replacement of the model group portion of the content model.  The
NFA-to-DFA approach is gone.  The resulting system does a better job in less
space and significantly faster: 30% on the standard tmsxtvd test, orders of
magnitude on documents with large sequences of optional elements.</p>
<p>Note: A couple unit tests fail due to incidental reasons that will be address
when fixing <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/75">#75</a>.  Also, the architecture documentation for the
validation portion of the content model is completely out of date.</p>
<ul class="simple">
<li>Handle sequences of optional elements more effectively.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/33">#33</a></li>
<li>Correct multi-step attribute restriction/extension.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/80">#80</a></li>
<li>Support prefix rewrite for schema location URIs.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/81">#81</a></li>
<li>Fix syntax error generating wildcard namespace constraints.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/84">#84</a></li>
<li>Support whitespace validation bypass in simple type definitions.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/85">#85</a></li>
</ul>
</div>
<div class="section" id="jan-2010-rev-2135">
<h3>1.1.1 (28 Jan 2010, rev 2135)<a class="headerlink" href="#jan-2010-rev-2135" title="Permalink to this headline">¶</a></h3>
<p>Major feature is significantly improved ability to determine what content is
not acceptable to the validating parser, and where it can be found in the
document.  See <a class="reference external" href="userref_usebind.html#invalid-content"><em>Locating Invalid Content</em></a>.</p>
<p>Also, using keyword parameters in binding instance constructors will now raise
an <a class="reference external" href="api/pyxb.exceptions_.ExtraContentError-class.html">ExtraContentError</a> in the case where the keyword does not
correspond to the PyXB-generated identifier associated with an attribute or
element of the class being instantiated.</p>
<ul class="simple">
<li>Eliminate complaints about reference to deprecated <tt class="xref docutils literal"><span class="pre">sha</span></tt> module in Python
2.6.</li>
<li>Fix assorted problems with mixtures of <a class="reference external" href="pyxbgen_cli.html#pyxbgen-binding-root"><em>&#8211;binding-root</em></a>,
<a class="reference external" href="pyxbgen_cli.html#pyxbgen-module-prefix"><em>&#8211;module-prefix</em></a>, and <a class="reference external" href="pyxbgen_cli.html#pyxbgen-write-for-customization"><em>&#8211;write-for-customization</em></a>.
<a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/64">#64</a>, <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/65">#65</a></li>
<li>Eliminate unnecessary attempts to download schema for builtin namespaces.
<a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/63">#63</a></li>
<li>Avoid assertion failure when provided schema location&#8217;s content looks a
little, but not enough, like a schema document.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/72">#72</a></li>
<li>References to declarations in other namespaces are now calculated locally to
the module, rather than cached under the expectation the name is valid
everywhere.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/73">#73</a></li>
<li>Imposed consistency on behavior when document root element is not
recognized.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/74">#74</a></li>
<li>Partial implementation of improved error data stored in exceptions.
<a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/75">#75</a></li>
<li>Detect invalid keywords in instance constructor calls.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/76">#76</a></li>
</ul>
</div>
<div class="section" id="nov-2009-rev-2092">
<h3>1.1.0 (30 Nov 2009, rev 2092)<a class="headerlink" href="#nov-2009-rev-2092" title="Permalink to this headline">¶</a></h3>
<p>Mostly nit-picky things, but some changed interface, so we&#8217;re starting a new
beta series.</p>
<ul class="simple">
<li>Make handling of invalid xsi:type attributes more robust.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/56">#56</a></li>
<li>Use validation flags to control validation (what a novel concept).
<a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/57">#57</a></li>
<li>Fix improper generation of content within elements marked as xsi:nil.
<a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/58">#58</a></li>
<li>Provide mechanism to control default handling of xsi:type attributes in
instance documents.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/60">#60</a></li>
<li>Fix bug where constraining facets were not inherited when deriving simple
types by restriction.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/61">#61</a></li>
</ul>
</div>
</div>
<div class="section" id="x-stable">
<h2>1.0.x (Stable)<a class="headerlink" href="#x-stable" title="Permalink to this headline">¶</a></h2>
<div class="section" id="oct-2009-rev-2068">
<h3>1.0.0 (18 Oct 2009, rev 2068)<a class="headerlink" href="#oct-2009-rev-2068" title="Permalink to this headline">¶</a></h3>
<p>Nobody seems to have found anything critical for a while, and it does what I
want it to, so we&#8217;ll let this thing run free.</p>
<ul class="simple">
<li>Replace a reference to a non-existent variable with something that works.
<a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/52">#52</a></li>
<li>Consistently validate instances created from documents no matter which
parser is used.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/53">#53</a></li>
<li>Support caching message references in WSDL SOAP faults.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/54">#54</a></li>
</ul>
</div>
</div>
<div class="section" id="id1">
<h2>0.7.x (Beta)<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
<div class="section" id="sep-2009-rev-2050">
<h3>0.7.3 (15 Sep 2009, rev 2050)<a class="headerlink" href="#sep-2009-rev-2050" title="Permalink to this headline">¶</a></h3>
<p>A few bug fixes (one major), a couple new features, and separation of the
various components to allow a smaller distribution.</p>
<ul>
<li><p class="first">Fixed a circular reference in the DFA state classes that caused memory bloat
in long-running processes.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/49">#49</a></p>
</li>
<li><p class="first">When PyXB renames an XML element or attribute due to a collision with a
reserved word, it will write a warning, and at runtime will raise an
exception if an attempt is made to assign to the original name.
<a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/50">#50</a>, <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/51">#51</a></p>
</li>
<li><p class="first">Support for pattern restrictions for string-based simple types.
<a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/47">#47</a></p>
</li>
<li><p class="first">Split distribution into multiple files to reduce download size:</p>
<blockquote>
<ul class="simple">
<li><tt class="docutils literal"><span class="pre">PyXB-base-&#64;VERSION&#64;.tar.gz</span></tt> &#8211; Complete release, nothing pre-built</li>
<li><tt class="docutils literal"><span class="pre">PyXB-doc-&#64;VERSION&#64;.tar.gz</span></tt> &#8211; Overlay with pre-built documentation</li>
<li><tt class="docutils literal"><span class="pre">PyXB-common-&#64;VERSION&#64;.tar.gz</span></tt> &#8211; Overlay with XHTML bindings</li>
<li><tt class="docutils literal"><span class="pre">PyXB-opengis-&#64;VERSION&#64;.tar.gz</span></tt> &#8211; Overlay with OpenGIS bindings</li>
<li><tt class="docutils literal"><span class="pre">PyXB-wsspat-&#64;VERSION&#64;.tar.gz</span></tt> &#8211; Overlay with WS-* bindings</li>
<li><tt class="docutils literal"><span class="pre">PyXB-full-&#64;VERSION&#64;.tar.gz</span></tt> &#8211; Complete release with all overlays</li>
</ul>
</blockquote>
</li>
</ul>
</div>
<div class="section" id="aug-2009-rev-1981">
<h3>0.7.2 (25 Aug 2009, rev 1981)<a class="headerlink" href="#aug-2009-rev-1981" title="Permalink to this headline">¶</a></h3>
<p>Primarily to fix a problem with chameleon schemas, but also a couple other
minor issues.</p>
<ul class="simple">
<li>References to QNames with absent namespaces in chameleon schema included
into schema with a target namespace could not be resolved.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/46">#46</a></li>
<li>Documentation content was not correctly sanitized for use within a Python
docstring.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/45">#45</a>.</li>
<li>Elements with complex types with simple content that derived from string
could not be marked as nil.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/48">#48</a></li>
</ul>
</div>
<div class="section" id="aug-2009-rev-1968">
<h3>0.7.1 (23 Aug 2009, rev 1968)<a class="headerlink" href="#aug-2009-rev-1968" title="Permalink to this headline">¶</a></h3>
<p>None of the enhancements really got in, but lots of minor bug fixes.</p>
<ul class="simple">
<li>Restored the ability to dump copies of all schemas retrieved from a remote
location, so you can review them.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/28">#28</a></li>
<li>Fixed assorted problems with simple types constructed by list and union.
<a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/35">#35</a>, <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/40">#40</a></li>
<li>Provide link from content values to the element binding that was used to
store them.  Useful for quickly identifying the owner element when
generating a valid child sequence for conversion to DOM.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/36">#36</a></li>
<li>Fix validation of attributes with union types.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/37">#37</a></li>
<li>Enumeration fixes: Only generate class-level constants for enumerations that
restrict a string representation (not double, float, etc).  Verify
enumerations work correctly on list and union constructions.  Duplicate the
class-level constants for enumerations that are defined in union member
types.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/38">#38</a></li>
<li>Provide a facility to simplify the automatic creation of an instance of the
appropriate type when storing values into an element.  Makes life with
anonymous local elements a lot easier.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/39">#39</a></li>
<li>Enhance management of namespace prefixes by allowing a system-wide default
in BindingDOMSupport and by inferring the base name of the module as the
default prefix for namespaces defined in imported bindings.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/41">#41</a></li>
<li>Provided crude facility to bypass validation when generating and parsing
documents.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/44">#44</a></li>
<li>Re-arrange the help for pyxbgen&#8217;s arguments, and add a script to
automatically generate the Sphinx tables for it.</li>
<li>Support bundles of related schemas/namespaces, currently wssplat (for WS-*)
and opengis (Geographic Information Systems).</li>
<li>Got the user-level documentation back up to where it might actually help
somebody.</li>
</ul>
</div>
<div class="section" id="aug-2009-rev-1715">
<h3>0.7.0 (03 Aug 2009, rev 1715)<a class="headerlink" href="#aug-2009-rev-1715" title="Permalink to this headline">¶</a></h3>
<p>This release is identical to 0.5.2 except that the binding interface has
completely changed.  All examples have been updated; the documentation will be
updated later.</p>
<p>Note that the code in PyXB itself has not changed, and is not going to
change.  However, properties produce an interface more natural to most Python
programs, so that has become the default style.  See the &#8211;binding-style
parameter to pyxbgen if you want to change this.</p>
<ul class="simple">
<li>Change the method of accessing elements and attributes in bindings from
accessor methods (e.g., elt.attr(), elt.setAttr()) to properties (e.g.,
elt.attr).  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/18">#18</a></li>
</ul>
</div>
</div>
<div class="section" id="id2">
<h2>0.5.x (Beta)<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h2>
<div class="section" id="aug-2009-rev-1706">
<h3>0.5.2 (03 Aug 2009, rev 1706)<a class="headerlink" href="#aug-2009-rev-1706" title="Permalink to this headline">¶</a></h3>
<p>Mostly changes to namespaces in support of profiles and application schemas
which extend other namespaces with special components, or have their own
copies of somebody else&#8217;s schemas, etc.  See the pyxbgen private/public
namespace switches.</p>
<ul class="simple">
<li>Presence of nested choice model groups caused the plurality calculations to
be wrong: some elements were dropped from the model, others were treated as
lists when only one instance would be permitted.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/34">#34</a></li>
<li>Content accessor would return wrong value for elements with simple type of
list variety.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/32">#32</a></li>
<li>Corrected handling of attributes when deriving complex types by
restriction.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/27">#27</a></li>
<li>Added a source module for XML namespace
(<a class="reference external" href="http://www.w3.org/XML/1998/namespace">http://www.w3.org/XML/1998/namespace</a>) with bindings linked to the built-in
component model.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/23">#23</a></li>
<li>Fix inadequacies in namespace archive management.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/22">#22</a></li>
</ul>
<p>This is expected to be the last release in 0.5.x.  0.7.0 should follow soon
thereafter, and only contain the change of default binding style from accessor
to property.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/18">#18</a></p>
</div>
<div class="section" id="jul-2009-rev-1502">
<h3>0.5.1 (16 Jul 2009, rev 1502)<a class="headerlink" href="#jul-2009-rev-1502" title="Permalink to this headline">¶</a></h3>
<p>Fixed various problems with OpenGIS schemas, specifically dependency loops
induced by attempting to keep binding components within modules identified by
the schema they came from, and loss of bindings for one namespace due to its
being overwritten by those for another.</p>
<ul class="simple">
<li>The presence of a wildcard in a sequence or choice model group caused other
elements to be lost in the binding.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/29">#29</a></li>
<li>Rework content verification to operate on binding instances rather than DOM
nodes.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/24">#24</a></li>
<li>Use <cite>value()</cite> to extract the value of a complex type with simple content;
the <cite>content()</cite> method works only with element and mixed content.
<a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/21">#21</a></li>
<li>Add support to specify prefix to be used in QNames when generating DOM
documents from binding instances.  Provide facility to re-use the
BindingDOMSupport instance for multiple conversions.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/15">#15</a></li>
<li>Tightened requirements on content type matching: no more will strings and
numbers automatically be converted to match the content model (probably for
a branch you didn&#8217;t intend).  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/14">#14</a></li>
<li>Fix problems overwriting binding modules with data from a different set of
namespaces.  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/31">#31</a>.</li>
<li>Eliminated the schema group modules: too hard to avoid dependency loops.
Now all components are written into a single module, which is a namespace
group module if the components cross namespaces.  A namespace-specific
module still exists, and imports only the relevant components from the group
module.</li>
</ul>
</div>
<div class="section" id="jul-2009-rev-1446">
<h3>0.5.0 (07 Jul 2009, rev 1446)<a class="headerlink" href="#jul-2009-rev-1446" title="Permalink to this headline">¶</a></h3>
<p>Ability to parse many of the OpenGIS schemas (gml, iso19139, citygml, ogc,
ogckml22, om, ows, sensorML, sos, swe, tml, ...).</p>
<ul class="simple">
<li>Completely rework include and import directives to correctly handle relative
paths in <tt class="docutils literal"><span class="pre">schemaLocation</span></tt> attributes and to only import from a given
location once per namespace. <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/9">#9</a>, <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/8">#8</a>, <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/5">#5</a></li>
<li>Parse <tt class="docutils literal"><span class="pre">final</span></tt> attribute on type definitions (though this has no effect on
the bindings).  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/10">#10</a></li>
<li>Complete missing implementations in complex types with simple content.
<a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/6">#6</a></li>
<li>Create new code generation model which supports inter-namespace and
inter-schema dependency cycles.  Namespace archives can now holds all
namespaces that depend on each other.</li>
<li>Other miscellaneous. <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/11">#11</a></li>
<li>Did I mention the ability to handle OpenGIS?  <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/16">#16</a></li>
</ul>
<p>Beware:</p>
<ul class="simple">
<li>Most of the classes in the new code generation model are undocumented.</li>
<li>The interface to <cite>pyxbgen</cite> has changed completely.  Look at
<tt class="docutils literal"><span class="pre">examples/OpenGIS/makebind.sh</span></tt> or other scripts in the <tt class="docutils literal"><span class="pre">examples</span></tt>
directory.</li>
</ul>
</div>
</div>
<div class="section" id="id3">
<h2>0.4.x (Stable)<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h2>
<div class="section" id="jun-2009-rev-1204">
<h3>0.4.0 (20 Jun 2009, rev 1204)<a class="headerlink" href="#jun-2009-rev-1204" title="Permalink to this headline">¶</a></h3>
<p>First usable public release.</p>
<ul class="simple">
<li>Use expanded names for all declarations and definitions. <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/1">#1</a></li>
<li>Use the finite automaton content model for generation as well as
parsing. <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/2">#2</a></li>
<li>Support xsi:type and xsi:nil. <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/3">#3</a></li>
<li>Support substitution groups. <a class="reference external" href="https://sourceforge.net/apps/trac/pyxb/ticket/4">#4</a></li>
<li>Fix many problems in QName resolution</li>
<li>Implement the remaining date/time types</li>
<li>Rework content model so binding instances are always instances of the
binding for the corresponding XML type, with no intervening element
instance</li>
<li>Add support for SAX parser</li>
</ul>
</div>
</div>
<div class="section" id="id4">
<h2>0.2.x (Stable)<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h2>
<div class="section" id="may-2009-rev-818">
<h3>0.2.0 (30 May 2009, rev 818)<a class="headerlink" href="#may-2009-rev-818" title="Permalink to this headline">¶</a></h3>
<ul class="simple">
<li>Initial public release</li>
</ul>
</div>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
            <h3><a href="index.html">Table Of Contents</a></h3>
            <ul>
<li><a class="reference external" href="#">Release History</a><ul>
<li><a class="reference external" href="#x-beta">1.1.x (Beta)</a><ul>
<li><a class="reference external" href="#may-2010">1.1.2 (30 May 2010)</a></li>
<li><a class="reference external" href="#jan-2010-rev-2135">1.1.1 (28 Jan 2010, rev 2135)</a></li>
<li><a class="reference external" href="#nov-2009-rev-2092">1.1.0 (30 Nov 2009, rev 2092)</a></li>
</ul>
</li>
<li><a class="reference external" href="#x-stable">1.0.x (Stable)</a><ul>
<li><a class="reference external" href="#oct-2009-rev-2068">1.0.0 (18 Oct 2009, rev 2068)</a></li>
</ul>
</li>
<li><a class="reference external" href="#id1">0.7.x (Beta)</a><ul>
<li><a class="reference external" href="#sep-2009-rev-2050">0.7.3 (15 Sep 2009, rev 2050)</a></li>
<li><a class="reference external" href="#aug-2009-rev-1981">0.7.2 (25 Aug 2009, rev 1981)</a></li>
<li><a class="reference external" href="#aug-2009-rev-1968">0.7.1 (23 Aug 2009, rev 1968)</a></li>
<li><a class="reference external" href="#aug-2009-rev-1715">0.7.0 (03 Aug 2009, rev 1715)</a></li>
</ul>
</li>
<li><a class="reference external" href="#id2">0.5.x (Beta)</a><ul>
<li><a class="reference external" href="#aug-2009-rev-1706">0.5.2 (03 Aug 2009, rev 1706)</a></li>
<li><a class="reference external" href="#jul-2009-rev-1502">0.5.1 (16 Jul 2009, rev 1502)</a></li>
<li><a class="reference external" href="#jul-2009-rev-1446">0.5.0 (07 Jul 2009, rev 1446)</a></li>
</ul>
</li>
<li><a class="reference external" href="#id3">0.4.x (Stable)</a><ul>
<li><a class="reference external" href="#jun-2009-rev-1204">0.4.0 (20 Jun 2009, rev 1204)</a></li>
</ul>
</li>
<li><a class="reference external" href="#id4">0.2.x (Stable)</a><ul>
<li><a class="reference external" href="#may-2009-rev-818">0.2.0 (30 May 2009, rev 818)</a></li>
</ul>
</li>
</ul>
</li>
</ul>

            <h4>Previous topic</h4>
            <p class="topless"><a href="examples.html"
                                  title="previous chapter">Examples</a></p>
            <h4>Next topic</h4>
            <p class="topless"><a href="architecture.html"
                                  title="next chapter">Architecture</a></p>
            <h3>This Page</h3>
            <ul class="this-page-menu">
              <li><a href="_sources/releases.txt"
                     rel="nofollow">Show Source</a></li>
            </ul>
          <div id="searchbox" style="display: none">
            <h3>Quick search</h3>
              <form class="search" action="search.html" method="get">
                <input type="text" name="q" size="18" />
                <input type="submit" value="Go" />
                <input type="hidden" name="check_keywords" value="yes" />
                <input type="hidden" name="area" value="default" />
              </form>
              <p class="searchtip" style="font-size: 90%">
              Enter search terms or a module, class or function name.
              </p>
          </div>
          <script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="architecture.html" title="Architecture"
             >next</a> |</li>
        <li class="right" >
          <a href="examples.html" title="Examples"
             >previous</a> |</li>
        <li><a href="index.html">PyXB v1.1.2 documentation</a> &raquo;</li>
    <li style="margin-left: 20px">PyXB hosted on <a href="http://sourceforge.net/projects/pyxb"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=263147&amp;type=9"
    width="80" height="15" alt="Get PyXB: Python XML Schema Bindings at SourceForge.net. Fast, secure and Free Open Source software downloads"/></a></li>
     

      </ul>
    </div>
    <div class="footer">
      &copy; Copyright 2009, Peter A. Bigot.
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.5.
    </div>
  </body>
</html>