From f061b0b853e4206e97472e204004fd012704a8af Mon Sep 17 00:00:00 2001 From: James Crook Date: Fri, 17 Mar 2017 20:39:11 +0000 Subject: [PATCH] Prepare for 2.2.0 Release Cycle. * IS_ALPHA to 1 * Version number to 2.2.0. --- configure.ac | 2 +- src/Audacity.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index da4d164e1..3c4024c11 100644 --- a/configure.ac +++ b/configure.ac @@ -34,7 +34,7 @@ dnl Require autoconf >= 2.59 AC_PREREQ([2.59]) dnl Init autoconf -AC_INIT([audacity], [2.1.3]) +AC_INIT([audacity], [2.2.0]) dnl Check for existence of Audacity.h AC_CONFIG_SRCDIR([src/Audacity.h]) AC_CONFIG_AUX_DIR([autotools]) diff --git a/src/Audacity.h b/src/Audacity.h index 024ce4e8b..2379577db 100644 --- a/src/Audacity.h +++ b/src/Audacity.h @@ -34,12 +34,12 @@ // We only do alpha builds and release versions. // Most of the time we're in development, so IS_ALPHA should be defined // to 1. -#define IS_ALPHA 0 +#define IS_ALPHA 1 // Increment as appropriate every time we release a NEW version. #define AUDACITY_VERSION 2 -#define AUDACITY_RELEASE 1 -#define AUDACITY_REVISION 3 +#define AUDACITY_RELEASE 2 +#define AUDACITY_REVISION 0 #define AUDACITY_MODLEVEL 0 #if IS_ALPHA