build+core: fix version number

v0.3 was tagged a long time ago.

Change-Id: Ifca6f01e0aac1b01303ae9fe5b40b3f354b9bb41
diff --git a/core/version.cpp b/core/version.cpp
index bf8dc7f..b007102 100644
--- a/core/version.cpp
+++ b/core/version.cpp
@@ -1,6 +1,6 @@
 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
 /**
- * Copyright (c) 2014-2015,  Arizona Board of Regents.
+ * Copyright (c) 2014-2016,  Arizona Board of Regents.
  *
  * This file is part of ndn-tools (Named Data Networking Essential Tools).
  * See AUTHORS.md for complete list of ndn-tools authors and contributors.
@@ -22,7 +22,7 @@
 namespace ndn {
 namespace tools {
 
-const char VERSION[] = "0.2";
+const char VERSION[] = "0.3";
 
 } // namespace tools
 } // namespace ndn
diff --git a/wscript b/wscript
index 76708ce..5a34e32 100644
--- a/wscript
+++ b/wscript
@@ -1,6 +1,6 @@
 # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
 
-VERSION = '0.2'
+VERSION = '0.3'
 APPNAME = 'ndn-tools'
 
 from waflib import Utils