Skip to content

Commit

Permalink
make some changes for first release
Browse files Browse the repository at this point in the history
  • Loading branch information
joewilliams committed Jan 16, 2009
1 parent 91ea648 commit 5b3f23e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,5 +1,5 @@
APP_NAME="merle"
VSN="pre0.1"
VSN="0.1"

all: compile

Expand Down
16 changes: 14 additions & 2 deletions README
@@ -1,7 +1,8 @@
merle : An erlang based memcached client.

Version : pre 0.1
Author : Joe Williams
Version : 0.1
Author : Joe Williams <joe@joetify.com>
Blog : http://www.joeandmotorboat.com/
Info : http://github.com/joewilliams/merle/

This code is available as Open Source Software under the MIT license.
Expand All @@ -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 *
Expand Down
4 changes: 2 additions & 2 deletions src/merle.erl
Expand Up @@ -23,7 +23,7 @@
%%
%% @author Joseph Williams <joe@joetify.com>
%% @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.
Expand All @@ -33,7 +33,7 @@
-module(merle).

-author("Joseph Williams <joe@joetify.com>").
-version("Version: pre 0.1").
-version("Version: 0.1").

-behaviour(gen_server).

Expand Down

0 comments on commit 5b3f23e

Please sign in to comment.