Skip to content

Commit 8949f08

Browse files
committed
Version 1.0.0
1 parent 1db5645 commit 8949f08

File tree

5 files changed

+18
-33
lines changed

5 files changed

+18
-33
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Sqlixx Release Notes
2+
3+
## [Unreleased]
4+
5+
[Unreleased]: https://github.com/dmitigr/sqlixx/compare/v1.0.0...HEAD

CMakeLists.txt

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
11
# -*- cmake -*-
2-
# Copyright (C) 2022 Dmitry Igrishin
32
#
4-
# This software is provided 'as-is', without any express or implied
5-
# warranty. In no event will the authors be held liable for any damages
6-
# arising from the use of this software.
3+
# Copyright 2022 Dmitry Igrishin
74
#
8-
# Permission is granted to anyone to use this software for any purpose,
9-
# including commercial applications, and to alter it and redistribute it
10-
# freely, subject to the following restrictions:
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
118
#
12-
# 1. The origin of this software must not be misrepresented; you must not
13-
# claim that you wrote the original software. If you use this software
14-
# in a product, an acknowledgment in the product documentation would be
15-
# appreciated but is not required.
16-
# 2. Altered source versions must be plainly marked as such, and must not be
17-
# misrepresented as being the original software.
18-
# 3. This notice may not be removed or altered from any source distribution.
9+
# http://www.apache.org/licenses/LICENSE-2.0
1910
#
20-
# Dmitry Igrishin
21-
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
2216

2317
cmake_minimum_required(VERSION 3.16)
2418
cmake_policy(VERSION 3.16)

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
# [SQLite] C++ driver
1+
# [SQLite] C++ driver (SQLite API)
22

33
`dmitigr::sqlixx` - is a header-only C++ driver for [SQLite].
44

55
To use this library, a compiler with C++17 support (such as GCC 7.5+) is required.
66

7-
**ATTENTION, the API is a subject to change!**
8-
97
## Features
108

119
- easy to use, header-only library;
@@ -69,9 +67,4 @@ int main()
6967
}
7068
```
7169

72-
## TODO
73-
74-
- enum class Errc for errors;
75-
- allow named parameters in execute().
76-
7770
[SQLite]: https://www.sqlite.org/

cmake/dmitigr_sqlixx.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Info
1919
# ------------------------------------------------------------------------------
2020

21-
dmitigr_cpplipa_set_library_info(sqlixx 1 0 0 "Client API for SQLite")
21+
dmitigr_cpplipa_set_library_info(sqlixx 1 0 0 "SQLite API")
2222

2323
# ------------------------------------------------------------------------------
2424
# Sources

doc/sqlixx/README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
# [SQLite] C++ driver
1+
# [SQLite] C++ driver (SQLite API)
22

33
`dmitigr::sqlixx` - is a header-only C++ driver for [SQLite].
44

55
To use this library, a compiler with C++17 support (such as GCC 7.5+) is required.
66

7-
**ATTENTION, the API is a subject to change!**
8-
97
## Features
108

119
- easy to use, header-only library;
@@ -69,9 +67,4 @@ int main()
6967
}
7068
```
7169

72-
## TODO
73-
74-
- enum class Errc for errors;
75-
- allow named parameters in execute().
76-
7770
[SQLite]: https://www.sqlite.org/

0 commit comments

Comments
 (0)