• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Automated Release Notes

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We are using Websphere 4.0.3 with CVS and DB2 V7 for our customer project. We are trying to keep track of versions and find and easy way to create release notes for our customer.
When we update a version we always put in Comments etc. We would like to be able to select a version and get a printout of all changes in java code, jsp, etc. We want to include
name of code, version, create date, comments. We might want to list information from the last 2 versions to show code changes.
We haven't been able to find any easy way of doing this. Anyone ever done this or no any tools etc that may help us.
Thanks
Reda
 
Ranch Hand
Posts: 427
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Our team uses CVS.
Each release has a CVS tag.
We create a CVS tagdiff for each release.
The tagdiff is used by our internal staff to look at all
changes that have occurred in the release.
Ant provides a CvsTagDiff task:
http://ant.apache.org/manual/CoreTasks/cvstagdiff.html
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic