diff --git a/configure.ac b/configure.ac
index a8030efda9e93078dc7f9c8d643ddf91974fd594..a96bd28dd4727d13fcadaa5a1abda769933c778c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ([2.61])
-AC_INIT(libwebsockets, 1.0, andy@warmcat.com)
+AC_INIT(libwebsockets, 1.1, andy@warmcat.com)
 AC_CONFIG_SRCDIR([test-server/test-server.c])
 AC_CONFIG_HEADERS([config.h])
 
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 2421bc50631edab064058d60d4e993b63691ea07..f5cdf3c36402378e4a6db697d670fe3f31699423 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -56,7 +56,8 @@ libwebsockets_la_CFLAGS+= -w -I../win32port/win32helpers -I ../win32port/zlib/
 libwebsockets_la_LDFLAGS+= -lm -luser32 -ladvapi32 -lkernel32 -lgcc
 else
 libwebsockets_la_CFLAGS+= -rdynamic -fPIC -Werror
-libwebsockets_la_LDFLAGS+=  -version-info 1:0
+# notice http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html has rules for how to bump this
+libwebsockets_la_LDFLAGS+=  -version-info 2:0:0
 endif
 
 libwebsockets_la_CFLAGS+= -c \