Skip to content

Commit

Permalink
version#
Browse files Browse the repository at this point in the history
  • Loading branch information
erh committed Dec 30, 2009
1 parent 184f8a4 commit 9905326
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0'?> <?xml version='1.0'?>
<project name="MongoDB Java Driver" default="compile" basedir="."> <project name="MongoDB Java Driver" default="compile" basedir=".">


<property name="version" value="1.1"/> <property name="version" value="1.2"/>
<property name="targetdir" location="target"/> <property name="targetdir" location="target"/>
<property name="testdir" location="${targetdir}/test"/> <property name="testdir" location="${targetdir}/test"/>


Expand Down
2 changes: 1 addition & 1 deletion src/main/com/mongodb/Mongo.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
public class Mongo { public class Mongo {


public static final int MAJOR_VERSION = 1; public static final int MAJOR_VERSION = 1;
public static final int MINOR_VERSION = 1; public static final int MINOR_VERSION = 2;


public static DB connect( DBAddress addr ){ public static DB connect( DBAddress addr ){
return new Mongo( addr ).getDB( addr._name ); return new Mongo( addr ).getDB( addr._name );
Expand Down

0 comments on commit 9905326

Please sign in to comment.