Release notes, what for? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T05:34:16Z http://stackoverflow.com/feeds/question/315628 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/315628/release-notes-what-for 8 Release notes, what for? Ville M 2008-11-24T21:51:50Z 2009-09-02T22:30:48Z <p>What are release notes for and who reads them? Should/could they be automated by just spitting out bugfixes for the current release, or do they warrant careful human editing? So, anybody with a link to best practices(reasoning behind) in regards to software release notes?</p> http://stackoverflow.com/questions/315628/release-notes-what-for/315648#315648 5 Answer by Mitchel Sellers for Release notes, what for? Mitchel Sellers 2008-11-24T21:56:00Z 2008-11-24T21:56:00Z <p>This really depends on who your application is built for and your organizations goals. However, I tend to believe that release notes need to be a concise listing of important key additions, enhancements, or fixes that are included in the particular release.</p> <p>Sometimes a simple dump of the bug tracking system information is enough, other times, I find that they need to be refined.</p> <p>The key is that typically Release Notes are believed to be the "Hey look at what we did" type listing of changes.</p> http://stackoverflow.com/questions/315628/release-notes-what-for/315649#315649 12 Answer by Adam Jaskiewicz for Release notes, what for? Adam Jaskiewicz 2008-11-24T21:56:12Z 2008-11-24T21:56:12Z <p>Bugfixes and added features. Users will read them to determine if they should go to the trouble of installing an incremental upgrade, or wait until the next release because this one doesn't add any features they need or fix any bugs in features that they were using.</p> <p>I'd say they at least require a human to read through them and make sure that each note is useful. It depends how good the comments on your bug fixes are.</p> http://stackoverflow.com/questions/315628/release-notes-what-for/315655#315655 5 Answer by Jim C for Release notes, what for? Jim C 2008-11-24T21:57:24Z 2008-11-24T21:57:24Z <p>Our release notes are human created instead of machine created. The cover three main topics. </p> <ol> <li><p>What is included in the releases (list of files)</p></li> <li><p>How to install it</p></li> <li><p>What changed since the last version (especially if the changes are not in the manual yet).</p></li> </ol> <p>items 1 and 2 don't chnage much from version to version, but they need to be reviewed. Item 3 takes the most work.</p> http://stackoverflow.com/questions/315628/release-notes-what-for/315674#315674 1 Answer by littlenag for Release notes, what for? littlenag 2008-11-24T22:02:45Z 2008-11-24T22:02:45Z <p>Release notes and READMEs can be really important if your customer has to take special action in addition to normal procedures in order to upgrade. It also be useful to warn customers/users of any db upgrades that can automatically happen as a result of installing a newer patch. The way I see it, Release Notes and READMEs should be written for the System Administrator audience. So include the kinds of things they would want to know about: summaries of important changes, how to install, known bugs, anything your software might do that would make someone pull their hair out, etc.</p> http://stackoverflow.com/questions/315628/release-notes-what-for/315677#315677 4 Answer by Kent Fredric for Release notes, what for? Kent Fredric 2008-11-24T22:04:02Z 2008-11-24T22:04:02Z <p>I habitually read release notes. I tend to want a full comprehensive list of feature changes ( or as good as plausible ) in order to greater empower my utilization of the new product.</p> <p>I want to see when certain critical bugs, or critical security issues are solved. </p> http://stackoverflow.com/questions/315628/release-notes-what-for/315679#315679 4 Answer by VonC for Release notes, what for? VonC 2008-11-24T22:04:50Z 2008-11-24T22:04:50Z <p>Release notes are also very important in <strong>production environment</strong>.</p> <p>They help answering the age-old question:</p> <blockquote> <p>What the heck is currently running into production ?</p> </blockquote> <p>Or the more refined question: does this bug has actually been fixed in this release ?</p> http://stackoverflow.com/questions/315628/release-notes-what-for/315689#315689 4 Answer by Patrick Cuff for Release notes, what for? Patrick Cuff 2008-11-24T22:09:07Z 2008-11-24T22:09:07Z <p>Release notes are also important to your testing organization (if you have one), so that they know what's changed in the release and needs testing.</p> http://stackoverflow.com/questions/315628/release-notes-what-for/315714#315714 1 Answer by Daok for Release notes, what for? Daok 2008-11-24T22:21:13Z 2008-11-24T22:21:13Z <p>Release note depend of your organization.</p> <p>I can talk for my organization. We use release note in PDF format and every time we publish a clickonce or a backend version. We send to office manager the Release note. This is a document used by the top administrator of the business (not only IT). This document is a way for them to know what is going on. What have changed, new features that are now in production, bugs fixed, and other thing that they might want to explain to their user.</p> <p>This is a document that can be between 3 to 4 pages, describing the job that has been done in this version with brief words.</p> http://stackoverflow.com/questions/315628/release-notes-what-for/315755#315755 0 Answer by Morten Bergfall for Release notes, what for? Morten Bergfall 2008-11-24T22:37:43Z 2008-11-24T22:37:43Z <p>This is of course highly dependent on the type of application/service/whatnot,<br /> but I've found that reading the release notes of my favorite developing tools etc..<br /> often make me stumble upon nice, interesting or even killer features that I'd probably miss if I did'nt at least skim the notes.....well, perhaps not killer, but you get my drift ;-)</p> <p>As most computer power users(now what kind of expression is that...)<br /> I never bother much with ordinary documentation, so this gives me<br /> that little something extra something besides clicking, hovering and faq'ing...</p> http://stackoverflow.com/questions/315628/release-notes-what-for/1370487#1370487 0 Answer by Jas Panesar for Release notes, what for? Jas Panesar 2009-09-02T22:30:48Z 2009-09-02T22:30:48Z <p>Release notes are for testers and users to know what's new/changed. Additionally, release notes can be used as supporting documentation when billing a new "version" of a software for client that you are building for them. v1.31 seems a lot easier to relate and drill into. </p> <p>Rather than compile both lists manually, if you can use your release notes to do that for you it's great.</p>