Skip to content

Commit 76b60b8

Browse files
committed
Release ScalaZ3 2.1 with libz3 bundled
1 parent fa3e20f commit 76b60b8

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ respectively. (eg: z3/4.3-unix-64b/include/z3.h and
2020
z3/4.3-unix-64b/lib/libz3.so).
2121

2222
2) Run 'sbt package' to create the jar file. It will be in
23-
'target/scala-2.10/scalaz3\_2.10-2.0.jar' and will contain the shared library
23+
'target/scala-2.10/scalaz3\_2.10-2.1.jar' and will contain the shared library
2424
dependencies.
2525

2626
3) For testing, run
@@ -36,7 +36,7 @@ respectively. (eg: z3/4.3-unix-64b/include/z3.h and
3636
z3/4.3-unix-64b/lib/libz3.dnylib).
3737

3838
2) Run 'sbt package' to create the jar file. It will be in
39-
'target/scala-2.10/scalaz3\_2.10-2.0.jar' and will contain the shared library
39+
'target/scala-2.10/scalaz3\_2.10-2.1.jar' and will contain the shared library
4040
dependencies.
4141

4242
3) For testing, run
@@ -52,5 +52,5 @@ Windows
5252
include/\*.h to /z3/[z3version]/include/. (eg: z3/4.3-win-64b/bin/libz3.dll)
5353

5454
3) Run 'sbt package' to create the jar file. It will end up in
55-
'target/scala2.10/scalaz3\_2.10-2.0.jar' and will contain the shared library
55+
'target/scala2.10/scalaz3\_2.10-2.1.jar' and will contain the shared library
5656
dependencies.

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "ScalaZ3"
22

3-
version := "2.0"
3+
version := "2.1"
44

55
organization := "ch.epfl.lara"
66

src/main/java/z3/Z3Wrapper.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ public final class Z3Wrapper {
3535

3636
private static final String versionString = LibraryChecksum.value;
3737

38-
//private static final String isDebug = System.getProperty("scalaz3.debug.load");
39-
private static final String isDebug = "aaa";
38+
private static final String isDebug = System.getProperty("scalaz3.debug.load");
4039

4140
// this is just to force class loading, and therefore library loading.
4241
static {
@@ -54,10 +53,6 @@ private static void debug(String msg) {
5453
}
5554
}
5655

57-
public static void main(String[] args) {
58-
System.out.println("yay");
59-
}
60-
6156
public static boolean withinJar() {
6257
java.net.URL classJar = Z3Wrapper.class.getResource("/lib-bin/");
6358
return classJar != null;

0 commit comments

Comments
 (0)