From mboxrd@z Thu Jan 1 00:00:00 1970 From: Suvayu Ali Subject: Re: Stable releases Date: Tue, 11 Aug 2015 21:34:04 +0200 Message-ID: <20150811193404.GT28462@chitra.no-ip.org> References: <55CA2E6B.4060102@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59521) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZPFJL-0006lD-MH for emacs-orgmode@gnu.org; Tue, 11 Aug 2015 15:34:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZPFJI-0008FQ-Fq for emacs-orgmode@gnu.org; Tue, 11 Aug 2015 15:34:11 -0400 Received: from mail-wi0-x230.google.com ([2a00:1450:400c:c05::230]:33578) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZPFJI-0008FC-9D for emacs-orgmode@gnu.org; Tue, 11 Aug 2015 15:34:08 -0400 Received: by wijp15 with SMTP id p15so189930498wij.0 for ; Tue, 11 Aug 2015 12:34:07 -0700 (PDT) Received: from chitra.no-ip.org (5072840E.static.ziggozakelijk.nl. [80.114.132.14]) by smtp.gmail.com with ESMTPSA id eb3sm4665435wib.24.2015.08.11.12.34.06 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 11 Aug 2015 12:34:06 -0700 (PDT) Content-Disposition: inline In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org On Tue, Aug 11, 2015 at 02:33:18PM -0400, Ista Zahn wrote: > On Tue, Aug 11, 2015 at 1:18 PM, Scott Randby wrote: > > > > I guess what I want to know, and maybe there is no answer, is how long > > should I wait before upgrading to a stable release? > > One strategy is keeping an eye on the mailing list and waiting for bug > reports to die down before upgrading. I would like to add, the community always needs help, and writing code is not the only way to do that. From your message it seems to me you have a rather elaborate use for Org. It might serve as a great test case. If you follow the list regularly, then you could help by testing the maint branch from time to time (or even master, up to you). You do not need to know how to use git, you have two options: - simply download the tarballs from the gitweb interface (see the "snapshot" links, http://orgmode.org/w/org-mode.git), - use elpa (either GNU, Org's own) As for git, I have included the bash function I use to update Org once a week. If you are interested, feel free to ask me Git questions off-list. function update_org() { pushd ~/build/org-mode # my Org repo and install directory local dorebase=$(git rev-list origin/master..master|wc -l) git stash git checkout master if [[ $dorebase -gt 0 ]]; then git pull --rebase --stat else git pull fi if [ $? == 0 ]; then echo "+++ Check if merged successfully. +++" echo "==> Want to continue?" select yesorno in "Yes" "No"; do case $yesorno in Yes) echo "+++ Building Org-mode $(git branch|egrep '\*') +++"; make compile autoloads info "$@" &> log [ $? -ne 0 ] && echo "+++ Build failed +++" && break; echo "+++ Installing Info files +++"; make install-info break;; No) echo "Aborting on user command."; break;; *) echo "==> Choose Yes or No by typing 1 or 2." esac done else echo "Merge failed, aborting." fi popd } Hope this helps, -- Suvayu Open source is the future. It sets us free.