Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitigr committed Apr 18, 2022
1 parent 1db5645 commit 8949f08
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 33 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Sqlixx Release Notes

## [Unreleased]

[Unreleased]: https://github.com/dmitigr/sqlixx/compare/v1.0.0...HEAD
26 changes: 10 additions & 16 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
# -*- cmake -*-
# Copyright (C) 2022 Dmitry Igrishin
#
# This software is provided 'as-is', without any express or implied
# warranty. In no event will the authors be held liable for any damages
# arising from the use of this software.
# Copyright 2022 Dmitry Igrishin
#
# Permission is granted to anyone to use this software for any purpose,
# including commercial applications, and to alter it and redistribute it
# freely, subject to the following restrictions:
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# 1. The origin of this software must not be misrepresented; you must not
# claim that you wrote the original software. If you use this software
# in a product, an acknowledgment in the product documentation would be
# appreciated but is not required.
# 2. Altered source versions must be plainly marked as such, and must not be
# misrepresented as being the original software.
# 3. This notice may not be removed or altered from any source distribution.
# http://www.apache.org/licenses/LICENSE-2.0
#
# Dmitry Igrishin
# dmitigr@gmail.com
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

cmake_minimum_required(VERSION 3.16)
cmake_policy(VERSION 3.16)
Expand Down
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# [SQLite] C++ driver
# [SQLite] C++ driver (SQLite API)

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

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

**ATTENTION, the API is a subject to change!**

## Features

- easy to use, header-only library;
Expand Down Expand Up @@ -69,9 +67,4 @@ int main()
}
```

## TODO

- enum class Errc for errors;
- allow named parameters in execute().

[SQLite]: https://www.sqlite.org/
2 changes: 1 addition & 1 deletion cmake/dmitigr_sqlixx.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Info
# ------------------------------------------------------------------------------

dmitigr_cpplipa_set_library_info(sqlixx 1 0 0 "Client API for SQLite")
dmitigr_cpplipa_set_library_info(sqlixx 1 0 0 "SQLite API")

# ------------------------------------------------------------------------------
# Sources
Expand Down
9 changes: 1 addition & 8 deletions doc/sqlixx/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# [SQLite] C++ driver
# [SQLite] C++ driver (SQLite API)

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

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

**ATTENTION, the API is a subject to change!**

## Features

- easy to use, header-only library;
Expand Down Expand Up @@ -69,9 +67,4 @@ int main()
}
```

## TODO

- enum class Errc for errors;
- allow named parameters in execute().

[SQLite]: https://www.sqlite.org/

0 comments on commit 8949f08

Please sign in to comment.