Skip to content

Commit

Permalink
version 1.0.0 preview
Browse files Browse the repository at this point in the history
  • Loading branch information
junehuang committed Nov 22, 2024
1 parent 824807e commit d77e3ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
16 changes: 5 additions & 11 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<property name="debug" value="true"/>

<!-- Currect release, e.g. 0.6 -->
<property name="release" value="0.8.3"/>
<property name="release" value="1.0.0"/>

<!-- Classpath -->
<path id="source" path="${build-dir}/classes">
Expand All @@ -25,15 +25,6 @@
<include name="**/*.zip"/>
</fileset>
</path>
<path id="binary">
<fileset dir="lib">
<include name="**/*.jar"/>
<include name="**/*.zip"/>
</fileset>
<fileset dir="jar">
<include name="**/*.jar"/>
</fileset>
</path>

<!--
Build necessary directories
Expand Down Expand Up @@ -68,7 +59,6 @@
<target
name="version-stamp"
description="Adds the version and build date to the Version class"
if="version"
>
<replace
file="${build-dir}/src/java/org/logicalcobwebs/proxool/Version.java"
Expand Down Expand Up @@ -104,6 +94,10 @@
description="Compiles and builds the JAR file"
depends="init,build-src,compile"
>
<!-- Copy src into the compiled classes directory. -->
<copy todir="${build-dir}/classes/src" filtering="true">
<fileset dir="${build-dir}/src/java" includes="**/*.java,**/*.xml,**/*.properties,**/*.dtd"/>
</copy>
<manifest file="${build-dir}/etc/MANIFEST.MF">
<attribute name="Proxool-Version" value="${release}"/>
<attribute name="Date" value="${TODAY}"/>
Expand Down
2 changes: 1 addition & 1 deletion src/java/org/logicalcobwebs/proxool/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class Version {

private static final String BUILD_DATE = null;

private static final String CVS = "0.8.3+";
private static final String CVS = "1.0.0+";

public static String getVersion() {
StringBuffer version = new StringBuffer();
Expand Down

0 comments on commit d77e3ef

Please sign in to comment.