[Assorted-commits] SF.net SVN: assorted:[1451] python-commons/trunk
Brought to you by:
yangzhang
From: <yan...@us...> - 2009-06-03 17:52:14
|
Revision: 1451 http://assorted.svn.sourceforge.net/assorted/?rev=1451&view=rev Author: yangzhang Date: 2009-06-03 17:52:11 +0000 (Wed, 03 Jun 2009) Log Message: ----------- updated version numbers and changelog Modified Paths: -------------- python-commons/trunk/README python-commons/trunk/publish.bash python-commons/trunk/setup.py python-commons/trunk/src/commons/__init__.py Modified: python-commons/trunk/README =================================================================== --- python-commons/trunk/README 2009-06-03 17:37:26 UTC (rev 1450) +++ python-commons/trunk/README 2009-06-03 17:52:11 UTC (rev 1451) @@ -39,9 +39,25 @@ version 0.6, 2008-10-?? -- ??? (review!) -- released for [MIT 6.00 courseware](http://assorted.sf.net/mit600/) +- to strs added unwrap, indent, unindent, remove_empty_lines, underline, + dos2unix, quotejs, unicode2html, html2unicode, nat_lang_join, or_join, + and_join +- to misc added sendmail, days, settimeout, run, TerminalController +- imported and updated jorendorff's path.py +- to startup added command_name +- to files added read_file, write_file, write_or_rm, is_nonempty_file +- added sqlhash and sqlhash backend for shelf +- to structs added dicts2structs, structs2dicts; FreeStruct renamed to + free_struct +- to seqs added span, group_as_subseqs +- decs.pickle_memoized uses protocol 2 +- general tweaks; epydoc fixes +- python 2.6-ready +- released for [Mailing List Filter], [MIT 6.00] courseware +[Mailing List Filter]: http://assorted.sourceforge.net/mailing-list-filter/ +[MIT 6.00]: http://web.mit.edu/~6.00/ + version 0.5, 2008-05-14 - added `cp1252_to_unicode()` Modified: python-commons/trunk/publish.bash =================================================================== --- python-commons/trunk/publish.bash 2009-06-03 17:37:26 UTC (rev 1450) +++ python-commons/trunk/publish.bash 2009-06-03 17:52:11 UTC (rev 1451) @@ -1,14 +1,14 @@ #!/usr/bin/env bash post-stage() { - epydoc -o $stagedir/doc src/commons/ + epydoc -v -o $stagedir/doc src/commons/ } echo 'Remember to keep versions in sync in all three locations:' echo '__init__.py, README (Changes), setup.bash, and setup.py' fullname='Python Commons' -version=0.5 +version=0.6 license=psf websrcs=( README ) rels=( pypi: ) Modified: python-commons/trunk/setup.py =================================================================== --- python-commons/trunk/setup.py 2009-06-03 17:37:26 UTC (rev 1450) +++ python-commons/trunk/setup.py 2009-06-03 17:52:11 UTC (rev 1451) @@ -9,7 +9,7 @@ pkg_info_text = """ Metadata-Version: 1.1 Name: python-commons -Version: 0.5 +Version: 0.6 Author: Yang Zhang Author-email: yaaang NOSPAM at REMOVECAPS gmail Home-page: http://assorted.sourceforge.net/python-commons Modified: python-commons/trunk/src/commons/__init__.py =================================================================== --- python-commons/trunk/src/commons/__init__.py 2009-06-03 17:37:26 UTC (rev 1450) +++ python-commons/trunk/src/commons/__init__.py 2009-06-03 17:52:11 UTC (rev 1451) @@ -10,7 +10,7 @@ @license: PSF """ -__version__ = ( 0, 5, 0 ) +__version__ = ( 0, 6, 0 ) __all__ = [ 'async', 'control', 'decs', This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |