Skip to content

Commit a216d9d

Browse files
committed
Add version numbers.
1 parent f266179 commit a216d9d

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
> #### NEWS
2-
> ###### Feb 4, 2015 - With the latest updates, sqlite3pp became boost-free. You don't have to use boost to use sqlite3pp any more. If you want the boost friendly version, the files are in the boost_src directory. But, I highly recommend you use new version if you are using c++11 or later.
32
> ###### Feb 9, 2016 - I just added header only version of sqlite3pp in headeronly_src directory. It's still in beta, which means no one is trying it in fields yet. Please try it and report bugs if you find any.
3+
> ###### Feb 4, 2015 - With the latest updates, sqlite3pp became boost-free. You don't have to use boost to use sqlite3pp any more. If you want the boost friendly version, the files are in the boost_src directory. But, I highly recommend you use new version if you are using c++11 or later.
44
55
sqlite3pp
66
=========

headeronly_src/sqlite3pp.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@
2525
#ifndef SQLITE3PP_H
2626
#define SQLITE3PP_H
2727

28+
#define SQLITE3PP_VERSION "1.0.0"
29+
#define SQLITE3PP_VERSION_MAJOR 1
30+
#define SQLITE3PP_VERSION_MINOR 0
31+
#define SQLITE3PP_VERSION_PATCH 0
32+
2833
#include <functional>
2934
#include <iterator>
3035
#include <sqlite3.h>

src/sqlite3pp.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@
2525
#ifndef SQLITE3PP_H
2626
#define SQLITE3PP_H
2727

28+
#define SQLITE3PP_VERSION "1.0.0"
29+
#define SQLITE3PP_VERSION_MAJOR 1
30+
#define SQLITE3PP_VERSION_MINOR 0
31+
#define SQLITE3PP_VERSION_PATCH 0
32+
2833
#include <functional>
2934
#include <iterator>
3035
#include <sqlite3.h>

0 commit comments

Comments
 (0)