Skip to content

Commit

Permalink
Updates docs/readmes/changelogs for cmx parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
shidarin committed Jul 4, 2015
1 parent 9e35181 commit 11ca043
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ the ``-o`` flag.::
Changelog
---------

*New in version 0.9:*

- Added ability to parse CMX EDLs
- Fixed a script bug where a collection format containing color decisions will not have those color decisions exported as individual color corrections.
- Added a cdl_convert.py stub file to the package root level, which will allow running of the cdl_convert script without installation. Due to relative imports in the python code, it was no longer possible to call cdl_convert/cdl_convert.py directly.
- The script, when run directly from cdl_convert.py, will now write errors to stderror correctly, and exit with a status of 1.

*New in version 0.8:*

- Added ``--single`` flag. When provided with an output collection format, each color correction in the input will be exported to it's own collection.
Expand Down
2 changes: 1 addition & 1 deletion cdl_convert/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
__copyright__ = "Copyright 2015, Sean Wallitsch"
__credits__ = ["Sean Wallitsch", ]
__license__ = "MIT"
__version__ = "0.8"
__version__ = "0.9a2"
__maintainer__ = "Sean Wallitsch"
__email__ = "shidarin@alphamatte.com"
__status__ = "Development"
Expand Down
9 changes: 5 additions & 4 deletions docs/cdl_convert.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
API Reference
#############

.. note::
All code for the following lives under cdl_convert.cdl_convert, and is
imported into the local space of cdl_convert.

Classes
=======

Expand Down Expand Up @@ -239,6 +235,11 @@ Parse cdl

.. autofunction:: cdl_convert.parse.parse_cdl

Parse cmx
---------

.. autofunction:: cdl_convert.parse.parse_cmx

Parse file
----------

Expand Down
8 changes: 8 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Changelog
#########

Version 0.9
===========

- Added ability to parse CMX EDLs
- Fixed a script bug where a collection format containing color decisions will not have those color decisions exported as individual color corrections.
- Added a cdl_convert.py stub file to the package root level, which will allow running of the cdl_convert script without installation. Due to relative imports in the python code, it was no longer possible to call cdl_convert/cdl_convert.py directly.
- The script, when run directly from cdl_convert.py, will now write errors to stderror correctly, and exit with a status of 1.


Version 0.8
===========
Expand Down

0 comments on commit 11ca043

Please sign in to comment.