File tree Expand file tree Collapse file tree 3 files changed +23
-15
lines changed Expand file tree Collapse file tree 3 files changed +23
-15
lines changed Original file line number Diff line number Diff line change 2
2
Changelog
3
3
=========
4
4
5
+ 1.0.0 (2022-07-15)
6
+ ------------------
7
+
8
+ * First stable release.
9
+ * Insert data into QuestDB via ILP.
10
+ * Sender and Buffer APIs.
11
+ * Authentication and TLS support.
12
+ * Auto-flushing of buffers.
13
+
14
+
5
15
0.0.3 (2022-07-14)
6
16
------------------
7
17
Original file line number Diff line number Diff line change 5
5
6
6
Build Tooling
7
7
=============
8
- * **[MEDIUM] ** Transition to Azure, move Linux arm to ARM pipeline without QEMU.
9
8
10
- * **[MEDIUM] ** Automate Apple Silicon.
9
+ * **[HIGH] ** Transition to Azure, move Linux arm to ARM pipeline without QEMU.
10
+
11
+ * **[MEDIUM] ** Automate Apple Silicon as part of CI.
12
+
13
+ * **[LOW] ** Release to PyPI from CI.
11
14
12
15
13
16
Docs
14
17
====
15
- * **[HIGH] ** Author a few examples of how to use the client.
16
- This will help people get started. The examples should be presented in Sphinx
17
- using ``.. literalinclude:: ``.
18
- See: https://www.sphinx-doc.org/en/master/usage/restructuredtext/directives.html#directive-literalinclude
19
- The examples should be in the ``examples/ `` directory in the repo.
20
18
21
- * **[MEDIUM] ** These examples should be tested as part of the unit tests (as they
19
+ * **[MEDIUM] ** Examples should be tested as part of the unit tests (as they
22
20
are in the C client). This is to ensure they don't "bit rot" as the code
23
21
changes.
24
22
25
- * **[LOW ] ** Document on a per-version basis.
23
+ * **[MEDIUM ] ** Document on a per-version basis.
26
24
27
25
Development
28
26
===========
29
- * **[MEDIUM] ** Once we're done with them, merge in changes in the ``py_client_tweaks `` branch
30
- of the C client.
31
27
32
- * **[LOW ] ** Implement ``tabular() `` API in the buffer.
28
+ * **[HIGH ] ** Implement ``tabular() `` API in the buffer.
33
29
34
- * **[LOW ] ** Implement ``pandas() `` API in the buffer.
30
+ * **[MEDIUM ] ** Implement ``pandas() `` API in the buffer.
35
31
*This can probably wait for a future release. *
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ version = "0.0.3"
6
6
description = " QuestDB client library for Python"
7
7
readme = " README.rst"
8
8
classifiers = [
9
- " Development Status :: 2 - Pre-Alpha " ,
9
+ " Development Status :: 5 - Production/Stable " ,
10
10
" Environment :: Plugins" ,
11
11
" Intended Audience :: Developers" ,
12
12
" Programming Language :: Python" ,
@@ -15,7 +15,9 @@ classifiers = [
15
15
" Programming Language :: Rust" ,
16
16
" License :: OSI Approved :: Apache Software License" ,
17
17
" Topic :: Software Development :: Libraries" ,
18
- " Topic :: System :: Networking" ]
18
+ " Topic :: System :: Networking" ,
19
+ " Topic :: Database :: Front-Ends" ,
20
+ " Topic :: Scientific/Engineering" ]
19
21
20
22
[project .license ]
21
23
text = " Apache License 2.0"
You can’t perform that action at this time.
0 commit comments