From a8b471e7edf5143fa0387e5f0d2a057c392c04d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Sun, 1 Sep 2013 16:37:04 +0200 Subject: [PATCH] Travis CI build status at the beginning of the README - remove an old TODO already done --- README.md | 4 ++-- TODO.txt | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4ea23b7..f9d3636 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ SQLiteC++ --------- +![SQLiteCpp build status](https://api.travis-ci.org/SRombauts/SQLiteCpp.png "SQLiteCpp build status") + SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper. See SQLiteC++ website http://srombauts.github.com/SQLiteCpp on GitHub. @@ -110,8 +112,6 @@ make test ### Continuous Integration -Current build status: ![SQLiteCpp build status](https://api.travis-ci.org/SRombauts/SQLiteCpp.png "SQLiteCpp build status") - This project is continuously tested under Ubuntu Linux with the gcc and clang compilers using the Travis CI community service with the above CMake building and testing procedure. diff --git a/TODO.txt b/TODO.txt index 52c9e4e..176d27d 100644 --- a/TODO.txt +++ b/TODO.txt @@ -16,7 +16,6 @@ Missing features in v0.5.0: - getColumnByName ? std::map getRow() ? Missing documentation in v0.5.0: -- This wrapper is not thread safe: compare to the thread safety of the SQLite3 library - explain the noncopyable property for RAII design - comment on returning error code instead of exception that shall not be thrown when exepected (!?)