active questions tagged releasing - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T00:44:38Zhttp://stackoverflow.com/feeds/tag/releasinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/35646/do-you-continue-development-in-a-branch-or-in-the-trunk40Do you continue development in a branch or in the trunk?Sam McAfee2008-08-30T03:26:11Z2009-04-15T23:42:59Z
<p>Suppose you're developing a software product that has periodic releases. What are the best practices with regard to branching and merging? Slicing off periodic release branches to the public (or whomever your customer is) and then continuing development on the trunk, or considering the trunk the stable version, tagging it as a release periodically, and doing your experimental work in branches. What do folks think is the trunk considered "gold" or considered a "sand box"?</p>
http://stackoverflow.com/questions/44566/how-do-i-simultaneously-work-on-version-1-1-and-version-2-07How do I simultaneously work on version 1.1 and version 2.0?Apocalisp2008-09-04T19:28:52Z2008-11-25T20:51:15Z
<p>The situation: We're out of beta and version 1.0 has been released to several customer sites. Team A is already busy working on version 1.1 that will have incremental bugfixes and usability tweaks, while another team works on version 2.0 with large-scale changes, where the core of the product may have been completely redesigned. Now, most of the changes made for 1.1 will have to make their way into 2.0 at some point, and some of the bug fixes made in the 2.0 branch might in fact need to be scheduled for an earlier release. The problem is that since 2.0 has fundamental differences, no changes from 1.1 can be merged in without manual conversion, nor vice versa.</p>
<p>My question: What are the best revision control practises to minimise merge conflicts and duplicate work in this kind of situation? How can I ensure that my teams spend as little time and effort as possible on revision control issues, while still providing regular patches to customers?</p>
http://stackoverflow.com/questions/7139/should-a-first-release-be-an-0-1-version-or-1-0b5Should a first release be an 0.1 version or 1.0b?epatel2008-08-10T09:50:01Z2008-08-10T17:01:46Z
<p>I see so many projects and softwares released on the internet that has a 0.x version and they never reaches 1.0. </p>
<p>Shouldn't a first release be 1.0 (or 1.0b at least)?</p>
<p>Example, the VLC project dated 1996-2008 now at version 0.8.6?</p>