Author: mturk Date: Wed Feb 24 06:20:04 2010 New Revision: 915697 URL: http://svn.apache.org/viewvc?rev=915697&view=rev Log: Advance to the 1.0.3-dev after a tag
Modified: commons/proper/daemon/trunk/build.xml commons/proper/daemon/trunk/pom.xml commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunmgr/prunmgr.rc commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunsrv/prunsrv.h commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunsrv/prunsrv.rc commons/proper/daemon/trunk/src/native/unix/native/version.h Modified: commons/proper/daemon/trunk/build.xml URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/build.xml?rev=915697&r1=915696&r2=915697&view=diff ============================================================================== --- commons/proper/daemon/trunk/build.xml (original) +++ commons/proper/daemon/trunk/build.xml Wed Feb 24 06:20:04 2010 @@ -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.2"/> + <property name="component.version" value="1.0.3-dev"/> <!-- The base directory for compilation targets --> <property name="build.home" value="target"/> Modified: commons/proper/daemon/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/pom.xml?rev=915697&r1=915696&r2=915697&view=diff ============================================================================== --- commons/proper/daemon/trunk/pom.xml (original) +++ commons/proper/daemon/trunk/pom.xml Wed Feb 24 06:20:04 2010 @@ -27,7 +27,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>commons-daemon</groupId> <artifactId>commons-daemon</artifactId> - <version>1.0.2</version> + <version>1.0.3-dev</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 --> Modified: commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunmgr/prunmgr.rc URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunmgr/prunmgr.rc?rev=915697&r1=915696&r2=915697&view=diff ============================================================================== --- commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunmgr/prunmgr.rc (original) +++ commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunmgr/prunmgr.rc Wed Feb 24 06:20:04 2010 @@ -225,7 +225,7 @@ STRINGTABLE BEGIN IDS_APPLICATION RSTR_PSM - IDS_APPVERSION "Version 1.0.2" + IDS_APPVERSION "Version 1.0.3" IDS_APPFULLNAME RSTR_PSM " Version " PRG_VERSION IDS_APPCOPYRIGHT "Copyright © 2000-2010 The Apache Software Foundation" IDS_APPDESCRIPTION "Apache Commons Daemon Service Management Tool" @@ -256,8 +256,8 @@ END 1 VERSIONINFO - FILEVERSION 1,0,2,0 - PRODUCTVERSION 1,0,2,0 + FILEVERSION 1,0,3,0 + PRODUCTVERSION 1,0,3,0 FILEFLAGSMASK 0x3fL #if defined(_DEBUG) FILEFLAGS 0x03L Modified: commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunsrv/prunsrv.h URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunsrv/prunsrv.h?rev=915697&r1=915696&r2=915697&view=diff ============================================================================== --- commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunsrv/prunsrv.h (original) +++ commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunsrv/prunsrv.h Wed Feb 24 06:20:04 2010 @@ -25,7 +25,7 @@ #define _PRUNSRV_H #undef PRG_VERSION -#define PRG_VERSION "1.0.2.0" +#define PRG_VERSION "1.0.3.0" #define PRG_REGROOT L"Apache Software Foundation\\Procrun 2.0" #endif /* _PRUNSRV_H */ Modified: commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunsrv/prunsrv.rc URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunsrv/prunsrv.rc?rev=915697&r1=915696&r2=915697&view=diff ============================================================================== --- commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunsrv/prunsrv.rc (original) +++ commons/proper/daemon/trunk/src/native/nt/procrun/apps/prunsrv/prunsrv.rc Wed Feb 24 06:20:04 2010 @@ -22,8 +22,8 @@ IDI_MAINICON ICON "../../resources/procrunw.ico" 1 VERSIONINFO - FILEVERSION 1,0,2,0 - PRODUCTVERSION 1,0,2,0 + FILEVERSION 1,0,3,0 + PRODUCTVERSION 1,0,3,0 FILEFLAGSMASK 0x3fL #if defined(_DEBUG) FILEFLAGS 0x03L Modified: commons/proper/daemon/trunk/src/native/unix/native/version.h URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/unix/native/version.h?rev=915697&r1=915696&r2=915697&view=diff ============================================================================== --- commons/proper/daemon/trunk/src/native/unix/native/version.h (original) +++ commons/proper/daemon/trunk/src/native/unix/native/version.h Wed Feb 24 06:20:04 2010 @@ -31,13 +31,13 @@ #define JSVC_MINOR_VERSION 0 /** patch level */ -#define JSVC_PATCH_VERSION 2 +#define JSVC_PATCH_VERSION 3 /** * 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)