aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-08-02 20:37:31 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2010-08-02 20:37:31 +0100
commit3063f8185b354358362665a90967fa15c5407f2b (patch)
tree1014909f1614de2375b49676543944751648f33d
parent8f984a0bca04f222dc0f63fe84974a3391a6e3fe (diff)
Bump up the version number, and also copy bee.h to the public include
directory. This should fix compatibility with the Skype module (together with some changes there).
-rw-r--r--Makefile2
-rw-r--r--bitlbee.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 12bbb598..63784940 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@
# Program variables
objects = bitlbee.o dcc.o help.o ipc.o irc.o irc_im.o irc_channel.o irc_commands.o irc_send.o irc_user.o irc_util.o nick.o query.o root_commands.o set.o storage.o $(STORAGE_OBJS)
-headers = bitlbee.h commands.h conf.h config.h help.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h lib/events.h lib/ftutil.h lib/http_client.h lib/ini.h lib/md5.h lib/misc.h lib/proxy.h lib/sha1.h lib/ssl_client.h lib/url.h protocols/account.h protocols/ft.h protocols/nogaim.h
+headers = bitlbee.h commands.h conf.h config.h help.h ipc.h irc.h log.h nick.h query.h set.h sock.h storage.h lib/events.h lib/ftutil.h lib/http_client.h lib/ini.h lib/md5.h lib/misc.h lib/proxy.h lib/sha1.h lib/ssl_client.h lib/url.h protocols/account.h protocols/bee.h protocols/ft.h protocols/nogaim.h
subdirs = lib protocols
ifeq ($(TARGET),i586-mingw32msvc)
diff --git a/bitlbee.h b/bitlbee.h
index 10261c8a..a137ae43 100644
--- a/bitlbee.h
+++ b/bitlbee.h
@@ -34,10 +34,10 @@
#define _WIN32_WINNT 0x0501
#define PACKAGE "BitlBee"
-#define BITLBEE_VERSION "1.2.8"
+#define BITLBEE_VERSION "1.3dev"
#define VERSION BITLBEE_VERSION
#define BITLBEE_VER(a,b,c) (((a) << 16) + ((b) << 8) + (c))
-#define BITLBEE_VERSION_CODE BITLBEE_VER(1, 2, 8)
+#define BITLBEE_VERSION_CODE BITLBEE_VER(1, 3, 0)
#define MAX_STRING 511