Skip to content

Commit

Permalink
Fix some errors with Windows, play back to 0.3.0 for tagging of release
Browse files Browse the repository at this point in the history
  • Loading branch information
olabini committed Apr 5, 2009
1 parent 0eb67cd commit b789611
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@

<target name="compile" depends="generate, generate_filters" description="Compile the source files for the project.">
<filter filtersfile="version_data.properties"/>
<filter token="VERSION" value="P"/>
<filter token="VERSION_RUNTIME" value="0.4.0-snapshot"/>
<filter token="VERSION_STRING" value="Ioke P ikj 0.4.0-snapshot"/>
<filter token="VERSION" value="E"/>
<filter token="VERSION_RUNTIME" value="0.3.0"/>
<filter token="VERSION_STRING" value="Ioke E ikj 0.3.0"/>

<javac destdir="${classes.dir}" debug="true" source="${javac.version}" target="${javac.version}">
<classpath refid="build.classpath"/>
Expand Down Expand Up @@ -150,7 +150,7 @@
</target>

<target name="dist-bin" depends="jar">
<tar destfile="${release.dir}/ioke-P-ikj-0.4.0-snapshot.tar.gz" compression="gzip">
<tar destfile="${release.dir}/ioke-E-ikj-0.3.0.tar.gz" compression="gzip">
<tarfileset mode="755" dir="." prefix="ioke">
<include name="bin/**"/>
</tarfileset>
Expand All @@ -167,7 +167,7 @@
</tarfileset>
</tar>

<zip destfile="${release.dir}/ioke-P-ikj-0.4.0-snapshot.zip">
<zip destfile="${release.dir}/ioke-E-ikj-0.3.0.zip">
<zipfileset filemode="755" dir="." prefix="ioke">
<include name="bin/**"/>
</zipfileset>
Expand Down
2 changes: 1 addition & 1 deletion src/builtin/D50_runtime.ik
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

Runtime version = Origin with(machine: "ikj", versionNumber: [0,4,0])
Runtime version = Origin with(machine: "ikj", versionNumber: [0,3,0])
2 changes: 1 addition & 1 deletion test/ispec_spec.ik
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe(ISpec Runner OptionParser,
it("should load onlyMatching from a file if --example is given a path",
parser = ISpec Runner OptionParser create(nil, nil)
parser order(["-e", "test/fixtures/names.txt",
]) onlyMatching should == ["Ola\r", "Martin\r", "Sam\r", "Carlos\r", "Brian\r", "Felipe\r"]
]) onlyMatching should == ["Ola\r", "Martin\r", "Sam\r", "Carlos\r", "Brian\r", "Felipe"]
)
)

Expand Down
2 changes: 1 addition & 1 deletion test/runtime_spec.ik
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe(Runtime,

describe("versionNumber",
it("should be the correct version",
Runtime version versionNumber should == [0,4,0]
Runtime version versionNumber should == [0,3,0]
)
)
)
Expand Down

0 comments on commit b789611

Please sign in to comment.