Changeset 288


Ignore:
Timestamp:
24-06-07 22:53:56 (6 years ago)
Author:
thomas
Message:

releasing 0.2.5

Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r287 r288  
     1=== release 0.2.5 === 
     2 
     32007-06-24  Thomas Vander Stichele  <thomas at apestaart dot org> 
     4 
     5        * NEWS: 
     6        * README: 
     7        * configure.ac: 
     8        * doc/release: 
     9        * moap.doap: 
     10          Releasing 0.2.5, "Matonge" 
     11 
    1122007-06-24  Thomas Vander Stichele  <thomas at apestaart dot org> 
    213 
  • trunk/NEWS

    r242 r288  
    1 This is MOAP 0.2.4, "Pacito". 
     1This is MOAP 0.2.5, "Matonge". 
     2 
     3Coverage in 0.2.5: 1039/1393 (74 %), 75 python tests, 2 bash tests 
     4 
     5Features added since 0.2.4: 
     6- added support for dc:description in .doap files to list the release's features 
     7- added bugzilla implementation for moap bug and moap doap bug 
     8- added better support for detecting exuberant ctags 
     9- added support for filing bugs for missing dependencies/distros 
     10- added Bazaar and Git backend for version control system features 
     11- added "moap changelog contributors" to get a list of contributors to a release 
     12- changed default behaviour for "moap changelog prepare" to not extract tags 
     13- added -c, --ctags option to "moap changelog prepare" to extract tags 
     14- added "help" command to "moap" and all its subcommands 
     15 
     16Bugs fixed since 0.2.4: 
     17- 240: no help command 
     18- 241: build failure on ubuntu fisty 
     19- 243: add bzr vcs backend 
     20- 248: DEP: Cheetah, Ubuntu 7.04 
     21- 250: Fixes for exuberant ctags checks 
     22- 252: moap cl prepare yields a traceback 
     23- 254: make fails if moap not in PATH 
     24- 255: [patch] --no-ctags option for cl prepare command 
    225 
    326Coverage in 0.2.4: 862/1177 (73 %), 56 python tests, 2 bash tests 
     
    1538Bugs fixed since 0.2.3: 
    1639- 235: moap.extern.log is wrong installed 
    17  
    18 This is MOAP 0.2.3, "Ketnet". 
    1940 
    2041Coverage in 0.2.3: 801/1100 (72 %), 49 python tests, 2 bash tests 
  • trunk/README

    r287 r288  
    1414  - look up project home page rank on Google and Yahoo for given queries 
    1515- version control tools: 
    16   - currently supports CVS, SVN and Darcs 
     16  - currently supports Bazaar, CVS, Darcs, Git, SVN 
    1717  - maintain ignore lists 
    1818  - prepare ChangeLog entry based on local diff, using ctags 
     
    2020  - show diff based on last ChangeLog entry 
    2121- bug tracker tools: 
    22   - show individual bugs and queries from trac 
     22  - show individual bugs and queries from trac and bugzilla 
    2323- developed in Python, with unit tests and coverage 
     24- get list of contributors from ChangeLog 
    2425- bash completion 
    2526 
    2627Future features planned include: 
    27 - get list of contributors from ChangeLog 
    2828- support for other VCS systems 
    2929 
     
    3232moap can make use of: 
    3333- the Redland python bindings (RDF), for parsing of DOAP files 
    34 - cvs, svn and darcs, for handling checkouts 
     34- bzr, cvs, darcs, git, and svn, for handling checkouts 
     35- Genshi and Cheetah, for templating 
     36- exuberant-ctags, for tag extraction 
    3537- Twisted's trial, for unit tests 
    3638- epydoc, for API documentation 
  • trunk/configure.ac

    r245 r288  
    22dnl when going to/from release please remove/add the nano (fourth number) 
    33dnl releases only do Wall, cvs and prerelease does Werror too 
    4 AC_INIT(moap, 0.2.4.1, 
    5    https://apestaart.org/moap/trac/newticket, 
     4AC_INIT(moap, 0.2.5, 
     5   http://moap.apestaart.org/moap/trac/newticket, 
    66   moap) 
    77 
  • trunk/doc/moap.ics

    r243 r288  
    4848END:VEVENT 
    4949 
     50BEGIN:VEVENT 
     51SUMMARY:MOAP 0.2.5 'Matonge' released 
     52UID:2007-06-24-moap-0.2.5@moap 
     53CLASS:PUBLIC 
     54PRIORITY:3 
     55DTSTART;VALUE=DATE:20070624 
     56DTEND;VALUE=DATE:20070624 
     57END:VEVENT 
     58 
    5059 
    5160END:VCALENDAR 
  • trunk/doc/moap.rss2

    r287 r288  
    66    <language>en</language> 
    77    <item> 
     8      <title>MOAP 0.2.5 'Matonge' released</title> 
     9      <guid isPermaLink="false">release-moap-0.2.5</guid> 
     10      <link>http://thomas.apestaart.org/moap/trac/</link> 
     11      <pubDate>Sun, 24 Jun 2007 00:00:00 +0000</pubDate> 
     12      <description> 
     13Added support for dc:description in .doap files to list the release's features. 
     14Added bugzilla implementation for moap bug and moap doap bug. 
     15Added better support for detecting exuberant ctags. 
     16Added support for filing bugs for missing dependencies/distros. 
     17Added Bazaar and Git backend for version control system features. 
     18Added "moap changelog contributors" to get a list of contributors to a release. 
     19Changed default behaviour for "moap changelog prepare" to not extract tags. 
     20Added -c, --ctags option to "moap changelog prepare" to extract tags. 
     21Added "help" command to "moap" and all its subcommands. 
     22For more information, visit 
     23&lt;A HREF="http://thomas.apestaart.org/moap/trac/"&gt;the project homepage&lt;/A&gt; 
     24      </description> 
     25    </item><item> 
    826      <title>MOAP 0.2.4 'Pacito' released</title> 
    927      <guid isPermaLink="false">release-moap-0.2.4</guid> 
  • trunk/doc/release

    r245 r288  
    99  moap doap bug query -f "- %(id)3s: %(summary)s" "milestone=0.2.2" 
    1010- Add coverage data to NEWS 
    11 - Add list of new features to NEWS and README 
     11- Add list of new features to NEWS 
     12- Update README and home page with relevant new features 
    1213- Run moap cl prep and add comment about release 
    1314- Update ChangeLog; add === release x.y.z === line 
  • trunk/moap.doap

    r280 r288  
    4747  </foaf:Person> 
    4848 </maintainer> 
     49 
     50 <release> 
     51  <Version> 
     52   <revision>0.2.5</revision> 
     53   <branch>trunk</branch> 
     54   <name>Matonge</name> 
     55   <created>2007-06-24</created> 
     56   <file-release rdf:resource="http://thomas.apestaart.org/download/moap/moap-0.2.5.tar.bz2" /> 
     57   <file-release rdf:resource="http://thomas.apestaart.org/download/moap/moap-0.2.5-1.noarch.rpm" /> 
     58   <dc:description> 
     59Added support for dc:description in .doap files to list the release's features. 
     60Added bugzilla implementation for moap bug and moap doap bug. 
     61Added better support for detecting exuberant ctags. 
     62Added support for filing bugs for missing dependencies/distros. 
     63Added Bazaar and Git backend for version control system features. 
     64Added "moap changelog contributors" to get a list of contributors to a release. 
     65Changed default behaviour for "moap changelog prepare" to not extract tags. 
     66Added -c, --ctags option to "moap changelog prepare" to extract tags. 
     67Added "help" command to "moap" and all its subcommands. 
     68    </dc:description> 
     69  </Version> 
     70 </release> 
    4971 
    5072 <release> 
Note: See TracChangeset for help on using the changeset viewer.