Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Cliff Moon committed Aug 25, 2008
1 parent 09b033f commit 04cc65c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
Version 0.2.4 (cliff)
* (Cliff Moon) merkle -> dmerkle
* (Cliff Moon) sort partitions first
* (Cliff Moon) more reasonable restart policy

Version 0.2.3 (cliff) Version 0.2.3 (cliff)
* (Cliff Moon) more reasonable defaults in the client lib * (Cliff Moon) more reasonable defaults in the client lib
* (Cliff Moon) execution flag * (Cliff Moon) execution flag
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -3,7 +3,7 @@ dnl - It should be specified as major.minor.revision [1.3.0]
dnl - The third argument, should be replaced with the package dnl - The third argument, should be replaced with the package
dnl - maintainers email address. dnl - maintainers email address.


AC_INIT([dynomite], [0.2.3], [cliff@powerset.com]) AC_INIT([dynomite], [0.2.4], [cliff@powerset.com])
SHORT_DESCRIPTION="The dynomite datastore. It is a highly available, low latency key value store. Word." SHORT_DESCRIPTION="The dynomite datastore. It is a highly available, low latency key value store. Word."


dnl - The following prerequisites line can be used to specify dnl - The following prerequisites line can be used to specify
Expand Down
1 change: 1 addition & 0 deletions src/elibs/membership.erl
Expand Up @@ -149,6 +149,7 @@ handle_call({share, NewState}, _From, State = #membership{config=Config}) ->
case vector_clock:compare(State#membership.version, NewState#membership.version) of case vector_clock:compare(State#membership.version, NewState#membership.version) of
less -> less ->
reload_storage_servers(State, NewState), reload_storage_servers(State, NewState),
save_state(NewState),
{reply, NewState, NewState}; {reply, NewState, NewState};
greater -> {reply, State, State}; greater -> {reply, State, State};
equal -> {reply, State, State}; equal -> {reply, State, State};
Expand Down

0 comments on commit 04cc65c

Please sign in to comment.