You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sebb <se...@gmail.com> on 2012/02/27 18:45:18 UTC

Re: svn commit: r1294233 - in /commons/proper/daemon/branches/1.0.x: ./ src/native/unix/native/ src/native/windows/apps/prunmgr/ src/native/windows/apps/prunsrv/

On 27 February 2012 17:17,  <mt...@apache.org> wrote:
> Author: mturk
> Date: Mon Feb 27 17:17:10 2012
> New Revision: 1294233
>
> URL: http://svn.apache.org/viewvc?rev=1294233&view=rev
> Log:
> Bump the version numbers
>
> Modified:
>    commons/proper/daemon/branches/1.0.x/build.xml
>    commons/proper/daemon/branches/1.0.x/pom.xml
>    commons/proper/daemon/branches/1.0.x/src/native/unix/native/version.h
>    commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunmgr/prunmgr.h
>    commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunmgr/prunmgr.rc
>    commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunsrv/prunsrv.h
>    commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunsrv/prunsrv.rc
>
> Modified: commons/proper/daemon/branches/1.0.x/build.xml
> URL: http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/build.xml?rev=1294233&r1=1294232&r2=1294233&view=diff
> ==============================================================================
> --- commons/proper/daemon/branches/1.0.x/build.xml (original)
> +++ commons/proper/daemon/branches/1.0.x/build.xml Mon Feb 27 17:17:10 2012
> @@ -59,7 +59,7 @@
>   <property name="component.title"         value="Java Daemons"/>
>
>   <!-- The current version number of this component -->
> -  <property name="component.version"       value="1.0.10"/>
> +  <property name="component.version"       value="1.0.11-SNAPSHOT"/>
>
>   <!-- The base directory for compilation targets -->
>   <property name="build.home"              value="target"/>
>
> Modified: commons/proper/daemon/branches/1.0.x/pom.xml
> URL: http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/pom.xml?rev=1294233&r1=1294232&r2=1294233&view=diff
> ==============================================================================
> --- commons/proper/daemon/branches/1.0.x/pom.xml (original)
> +++ commons/proper/daemon/branches/1.0.x/pom.xml Mon Feb 27 17:17:10 2012
> @@ -27,7 +27,7 @@
>   <modelVersion>4.0.0</modelVersion>
>   <groupId>commons-daemon</groupId>
>   <artifactId>commons-daemon</artifactId>
> -  <version>1.0.10</version>
> +  <version>1.0.11-SNAPSHOT</version>
>   <name>Commons Daemon</name>
>   <!-- Daemon started in Commons in 2002 with an import of code from Tomcat,
>        which is why the NOTICE file has an earlier date than the inceptionYear -->
> @@ -92,7 +92,7 @@
>     <maven.compile.source>1.3</maven.compile.source>
>     <maven.compile.target>1.3</maven.compile.target>
>     <commons.componentid>daemon</commons.componentid>
> -    <commons.release.version>1.0.10</commons.release.version>
> +    <commons.release.version>1.0.11-SNAPSHOT</commons.release.version>

Since this property is used for releases only, the -SNAPSHOT suffix is
not needed here.

>     <commons.jira.id>DAEMON</commons.jira.id>
>     <commons.jira.pid>12310468</commons.jira.pid>
>   </properties>
>
> Modified: commons/proper/daemon/branches/1.0.x/src/native/unix/native/version.h
> URL: http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/src/native/unix/native/version.h?rev=1294233&r1=1294232&r2=1294233&view=diff
> ==============================================================================
> --- commons/proper/daemon/branches/1.0.x/src/native/unix/native/version.h (original)
> +++ commons/proper/daemon/branches/1.0.x/src/native/unix/native/version.h Mon Feb 27 17:17:10 2012
> @@ -31,13 +31,13 @@
>  #define JSVC_MINOR_VERSION      0
>
>  /** patch level */
> -#define JSVC_PATCH_VERSION     10
> +#define JSVC_PATCH_VERSION     11
>
>  /**
>  *  This symbol is defined for internal, "development" copies of JSVC.
>  *  This symbol will be #undef'd for releases.
>  */
> -#define JSVC_IS_DEV_VERSION     0
> +#define JSVC_IS_DEV_VERSION     1
>
>  /** Properly quote a value as a string in the C preprocessor */
>  #define JSVC_STRINGIFY(n) JSVC_STRINGIFY_HELPER(n)
>
> Modified: commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunmgr/prunmgr.h
> URL: http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunmgr/prunmgr.h?rev=1294233&r1=1294232&r2=1294233&view=diff
> ==============================================================================
> --- commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunmgr/prunmgr.h (original)
> +++ commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunmgr/prunmgr.h Mon Feb 27 17:17:10 2012
> @@ -24,7 +24,7 @@
>  #define _PRUNMGR_H
>
>  #undef  PRG_VERSION
> -#define PRG_VERSION    "1.0.10.0"
> +#define PRG_VERSION    "1.0.11.0"
>  #define PRG_REGROOT   L"Apache Software Foundation\\Procrun 2.0"
>
>  #define IDM_TM_EXIT                     2000
>
> Modified: commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunmgr/prunmgr.rc
> URL: http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunmgr/prunmgr.rc?rev=1294233&r1=1294232&r2=1294233&view=diff
> ==============================================================================
> --- commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunmgr/prunmgr.rc (original)
> +++ commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunmgr/prunmgr.rc Mon Feb 27 17:17:10 2012
> @@ -228,7 +228,7 @@ END
>  STRINGTABLE
>  BEGIN
>     IDS_APPLICATION     RSTR_PSM
> -    IDS_APPVERSION      "Version 1.0.10"
> +    IDS_APPVERSION      "Version 1.0.11"
>     IDS_APPFULLNAME     RSTR_PSM " Version " PRG_VERSION
>     IDS_APPCOPYRIGHT    "Copyright (c) 2000-2012 The Apache Software Foundation"
>     IDS_APPDESCRIPTION  "Apache Commons Daemon Service Management Tool"
> @@ -259,8 +259,8 @@ BEGIN
>  END
>
>  1 VERSIONINFO
> - FILEVERSION 1,0,10,0
> - PRODUCTVERSION 1,0,10,0
> + FILEVERSION 1,0,11,0
> + PRODUCTVERSION 1,0,11,0
>  FILEFLAGSMASK 0x3fL
>  #if defined(_DEBUG)
>  FILEFLAGS 0x03L
>
> Modified: commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunsrv/prunsrv.h
> URL: http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunsrv/prunsrv.h?rev=1294233&r1=1294232&r2=1294233&view=diff
> ==============================================================================
> --- commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunsrv/prunsrv.h (original)
> +++ commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunsrv/prunsrv.h Mon Feb 27 17:17:10 2012
> @@ -25,7 +25,7 @@
>  #define _PRUNSRV_H
>
>  #undef  PRG_VERSION
> -#define PRG_VERSION    "1.0.10.0"
> +#define PRG_VERSION    "1.0.11.0"
>  #define PRG_REGROOT   L"Apache Software Foundation\\Procrun 2.0"
>
>  #endif /* _PRUNSRV_H */
>
> Modified: commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunsrv/prunsrv.rc
> URL: http://svn.apache.org/viewvc/commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunsrv/prunsrv.rc?rev=1294233&r1=1294232&r2=1294233&view=diff
> ==============================================================================
> --- commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunsrv/prunsrv.rc (original)
> +++ commons/proper/daemon/branches/1.0.x/src/native/windows/apps/prunsrv/prunsrv.rc Mon Feb 27 17:17:10 2012
> @@ -22,8 +22,8 @@
>  IDI_MAINICON         ICON                   "../../resources/procrunw.ico"
>
>  1 VERSIONINFO
> - FILEVERSION 1,0,10,0
> - PRODUCTVERSION 1,0,10,0
> + FILEVERSION 1,0,11,0
> + PRODUCTVERSION 1,0,11,0
>  FILEFLAGSMASK 0x3fL
>  #if defined(_DEBUG)
>  FILEFLAGS 0x03L
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
For additional commands, e-mail: dev-help@commons.apache.org