summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Mendez <me@jmendeth.com>2014-11-04 19:18:32 +0100
committerXavier Mendez <me@jmendeth.com>2014-11-04 19:18:32 +0100
commit3afc3ec505dd7dd902086f8c158290962e705663 (patch)
treec1c25485a29b7e26fd497579d08fe08f7cbca29b
parent9fbd90c51b86a0281ab3a2d89f789abed51a4f12 (diff)
downloadrust-hoedown-3afc3ec505dd7dd902086f8c158290962e705663.tar.gz
Release v3.0.0!
-rw-r--r--Makefile4
-rw-r--r--src/version.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 8898042..e777801 100644
--- a/Makefile
+++ b/Makefile
@@ -22,10 +22,10 @@ all: libhoedown.so hoedown smartypants
# Libraries
-libhoedown.so: libhoedown.so.1
+libhoedown.so: libhoedown.so.3
ln -f -s $^ $@
-libhoedown.so.1: $(HOEDOWN_SRC)
+libhoedown.so.3: $(HOEDOWN_SRC)
$(CC) -shared $^ $(LDFLAGS) -o $@
libhoedown.a: $(HOEDOWN_SRC)
diff --git a/src/version.h b/src/version.h
index 9b30f1d..bbf8598 100644
--- a/src/version.h
+++ b/src/version.h
@@ -12,8 +12,8 @@ extern "C" {
* CONSTANTS *
*************/
-#define HOEDOWN_VERSION "2.0.0"
-#define HOEDOWN_VERSION_MAJOR 2
+#define HOEDOWN_VERSION "3.0.0"
+#define HOEDOWN_VERSION_MAJOR 3
#define HOEDOWN_VERSION_MINOR 0
#define HOEDOWN_VERSION_REVISION 0