diff --git a/Makefile b/Makefile index 4fb7ba1..0abb9c2 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ APP_NAME="merle" -VSN="pre0.1" +VSN="0.1" all: compile diff --git a/README b/README index 5030c0c..f2fa4a4 100644 --- a/README +++ b/README @@ -1,7 +1,8 @@ merle : An erlang based memcached client. -Version : pre 0.1 -Author : Joe Williams +Version : 0.1 +Author : Joe Williams +Blog : http://www.joeandmotorboat.com/ Info : http://github.com/joewilliams/merle/ This code is available as Open Source Software under the MIT license. @@ -15,6 +16,17 @@ To Do: * Support for retrieving multiple keys at once * Socket pool/reuse +Installation: + +$ cd /some/erlang/lib/location/ +$ tar zxvf merle-VERSION.tar.gz +$ cd merle-VERSION +$ make +$ erl +> merle:module_info(). + +This should display info about merle if installd correctly. + Usage: * Start it up * diff --git a/src/merle.erl b/src/merle.erl index d1c8f19..b61b8db 100644 --- a/src/merle.erl +++ b/src/merle.erl @@ -23,7 +23,7 @@ %% %% @author Joseph Williams %% @copyright 2008 Joseph Williams -%% @version pre 0.1 +%% @version 0.1 %% @doc an erlang memcached client. %% %% This code is available as Open Source Software under the MIT license. @@ -33,7 +33,7 @@ -module(merle). -author("Joseph Williams "). --version("Version: pre 0.1"). +-version("Version: 0.1"). -behaviour(gen_server).