about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-03-10 04:35:41 +0000
committerEric Wong <normalperson@yhbt.net>2011-03-10 04:43:29 +0000
commitcdebfac019b5e771f7babc5646a3c7961729eaca (patch)
tree1eadca1d110f8a2b97503d27b85de12220440c20
parentd76fe634dfb3ed40b2ff02307963ac38d731d54e (diff)
downloadsleepy_penguin-cdebfac019b5e771f7babc5646a3c7961729eaca.tar.gz
There are many internal cleanups, bugfixes, and incompatible
API changes.  The API will probably be stable from now on.

All the flag passing is less verbose, in the past you had
to do:

	tfd = TimerFD.new(TimerFD::CLOEXEC|TimerFD::NONBLOCK)

Now, you can just do (the old way still works):

	tfd = TimerFD.new([:CLOEXEC, :NONBLOCK])

A SignalFD interface now exists, but is not recommended since
MRI signal handling seems to conflict with it.

Inotify#close no longer holds the GVL while closing the
descriptor since it is an expensive operation.

See git log v1.4.0..v2.0.0 for all the gory details.
-rwxr-xr-xGIT-VERSION-GEN2
1 files changed, 1 insertions, 1 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index 1fd8cf3..0550f7e 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v1.4.0.GIT
+DEF_VER=v2.0.0.GIT
 
 LF='
 '