mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 23:29:41 +02:00
Update Version number for 2.3.3 development.
This commit is contained in:
parent
bd2956bb45
commit
30dda4fe97
@ -2,7 +2,7 @@
|
||||
#if you want to work on this, please talk with us on
|
||||
# https://lists.sourceforge.net/lists/listinfo/audacity-devel
|
||||
#build time is circa 7 mins.
|
||||
version: 2.3.2-alpha-{build}
|
||||
version: 2.3.3-alpha-{build}
|
||||
branches:
|
||||
only:
|
||||
- prefs
|
||||
|
@ -38,7 +38,7 @@ PROJECT_NAME = Audacity
|
||||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 2.3.2
|
||||
PROJECT_NUMBER = 2.3.3
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
20
configure
vendored
20
configure
vendored
@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.69 for audacity 2.3.0.
|
||||
# Generated by GNU Autoconf 2.69 for audacity 2.3.3.
|
||||
#
|
||||
#
|
||||
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
|
||||
@ -587,8 +587,8 @@ MAKEFLAGS=
|
||||
# Identity of this package.
|
||||
PACKAGE_NAME='audacity'
|
||||
PACKAGE_TARNAME='audacity'
|
||||
PACKAGE_VERSION='2.3.0'
|
||||
PACKAGE_STRING='audacity 2.3.0'
|
||||
PACKAGE_VERSION='2.3.3'
|
||||
PACKAGE_STRING='audacity 2.3.3'
|
||||
PACKAGE_BUGREPORT=''
|
||||
PACKAGE_URL=''
|
||||
|
||||
@ -1598,7 +1598,7 @@ if test "$ac_init_help" = "long"; then
|
||||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures audacity 2.3.0 to adapt to many kinds of systems.
|
||||
\`configure' configures audacity 2.3.3 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
@ -1669,7 +1669,7 @@ fi
|
||||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of audacity 2.3.0:";;
|
||||
short | recursive ) echo "Configuration of audacity 2.3.3:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
@ -1897,7 +1897,7 @@ fi
|
||||
test -n "$ac_init_help" && exit $ac_status
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
audacity configure 2.3.0
|
||||
audacity configure 2.3.3
|
||||
generated by GNU Autoconf 2.69
|
||||
|
||||
Copyright (C) 2012 Free Software Foundation, Inc.
|
||||
@ -2535,7 +2535,7 @@ cat >config.log <<_ACEOF
|
||||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by audacity $as_me 2.3.0, which was
|
||||
It was created by audacity $as_me 2.3.3, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
@ -3404,7 +3404,7 @@ fi
|
||||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='audacity'
|
||||
VERSION='2.3.0'
|
||||
VERSION='2.3.3'
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
@ -24973,7 +24973,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
||||
# report actual input values of CONFIG_FILES etc. instead of their
|
||||
# values after options handling.
|
||||
ac_log="
|
||||
This file was extended by audacity $as_me 2.3.0, which was
|
||||
This file was extended by audacity $as_me 2.3.3, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
@ -25039,7 +25039,7 @@ _ACEOF
|
||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
||||
ac_cs_version="\\
|
||||
audacity config.status 2.3.0
|
||||
audacity config.status 2.3.3
|
||||
configured by $0, generated by GNU Autoconf 2.69,
|
||||
with options \\"\$ac_cs_config\\"
|
||||
|
||||
|
@ -34,7 +34,7 @@ dnl Require autoconf >= 2.59
|
||||
AC_PREREQ([2.59])
|
||||
|
||||
dnl Init autoconf
|
||||
AC_INIT([audacity], [2.3.0])
|
||||
AC_INIT([audacity], [2.3.3])
|
||||
dnl Check for existence of Audacity.h
|
||||
AC_CONFIG_SRCDIR([src/Audacity.h])
|
||||
AC_CONFIG_AUX_DIR([autotools])
|
||||
|
@ -39,7 +39,7 @@
|
||||
// Its value may be more than 0 for pre-release "Beta" builds that differ only
|
||||
// in the welcome screen, and hiding of some development menu commands, but
|
||||
// still link to the alpha manual online.
|
||||
#define AUDACITY_BUILD_LEVEL 2
|
||||
#define AUDACITY_BUILD_LEVEL 0
|
||||
|
||||
// used #ifdef not #if for IS_ALPHA, IS_BETA, IS_RELEASE, USE_ALPHA_MANUAL
|
||||
#undef IS_ALPHA
|
||||
@ -62,7 +62,7 @@
|
||||
// Increment as appropriate every time we release a NEW version.
|
||||
#define AUDACITY_VERSION 2
|
||||
#define AUDACITY_RELEASE 3
|
||||
#define AUDACITY_REVISION 2
|
||||
#define AUDACITY_REVISION 3
|
||||
#define AUDACITY_MODLEVEL 0
|
||||
|
||||
#if defined(IS_BETA)
|
||||
|
Loading…
x
Reference in New Issue
Block a user