diff --git a/README.html b/README.html index 0e25e618..bfc2e2ba 100644 --- a/README.html +++ b/README.html @@ -16,10 +16,10 @@ Getting Started with LuaJ -James Roseborough, Ian Farmer, Version 3.0-alpha2 +James Roseborough, Ian Farmer, Version 3.0-alpha3
-Copyright © 2009-2012 Luaj.org. +Copyright © 2009-2013 Luaj.org. Freely available under the terms of the Luaj license. @@ -117,7 +117,7 @@ in comparison with the standard C distribution.
- java -cp lib/luaj-jse-3.0-alpha2.jar lua examples/lua/hello.lua + java -cp lib/luaj-jse-3.0-alpha3.jar lua examples/lua/hello.lua
@@ -195,7 +195,7 @@ You should see the following output: To see how luaj can be used to acccess most Java API's including swing, try:
- java -cp lib/luaj-jse-3.0-alpha2.jar lua examples/lua/swingapp.lua + java -cp lib/luaj-jse-3.0-alpha3.jar lua examples/lua/swingapp.lua
- java -cp lib/luaj-jse-3.0-alpha2.jar luac examples/lua/hello.lua - java -cp lib/luaj-jse-3.0-alpha2.jar lua luac.out + java -cp lib/luaj-jse-3.0-alpha3.jar luac examples/lua/hello.lua + java -cp lib/luaj-jse-3.0-alpha3.jar lua luac.out
@@ -219,8 +219,8 @@ Luaj can compile lua sources or binaries directly to java bytecode if the bcel l
ant bcel-lib - java -cp "lib/luaj-jse-3.0-alpha2.jar;lib/bcel-5.2.jar" luajc -s examples/lua -d . hello.lua - java -cp "lib/luaj-jse-3.0-alpha2.jar;." lua -l hello + java -cp "lib/luaj-jse-3.0-alpha3.jar;lib/bcel-5.2.jar" luajc -s examples/lua -d . hello.lua + java -cp "lib/luaj-jse-3.0-alpha3.jar;." lua -l hello
@@ -231,7 +231,7 @@ but the compiled classes must be in the class path at runtime, unless runtime ji
Lua scripts can also be run directly in this mode without precompiling using the lua command with the -b option and providing the bcel library in the class path:
- java -cp "lib/luaj-jse-3.0-alpha2.jar;lib/bcel-5.2.jar" lua -b examples/lua/hello.lua + java -cp "lib/luaj-jse-3.0-alpha3.jar;lib/bcel-5.2.jar" lua -b examples/lua/hello.lua@@ -256,7 +256,7 @@ A simple example may be found in
-You must include the library lib/luaj-jse-3.0-alpha2.jar in your class path. +You must include the library lib/luaj-jse-3.0-alpha3.jar in your class path.
-You must include the library lib/luaj-jme-3.0-alpha2.jar in your midlet jar. +You must include the library lib/luaj-jme-3.0-alpha3.jar in your midlet jar.
An ant script to build and run the midlet is in @@ -311,7 +311,7 @@ The standard use of JSR-223 scripting engines may be used: All standard aspects of script engines including compiled statements should be supported.
-You must include the library lib/luaj-jse-3.0-alpha2.jar in your class path. +You must include the library lib/luaj-jse-3.0-alpha3.jar in your class path.
A working example may be found in @@ -323,7 +323,7 @@ To compile and run it using Java 1.6 or higher:
javac examples/jse/ScriptEngineSample.java - java -cp "lib/luaj-jse-3.0-alpha2.jar;examples/jse" ScriptEngineSample + java -cp "lib/luaj-jse-3.0-alpha3.jar;examples/jse" ScriptEngineSample
- java -cp lib/luaj-jse-3.0-alpha2.jar lua examples/lua/swingapp.lua + java -cp lib/luaj-jse-3.0-alpha3.jar lua examples/lua/swingapp.lua
diff --git a/version.properties b/version.properties index b9b99bf4..7b9d346f 100644 --- a/version.properties +++ b/version.properties @@ -1 +1 @@ -version: 3.0-alpha2 \ No newline at end of file +version: 3.0-alpha3 \ No newline at end of file