Skip to content

Commit 3580035

Browse files
committed
Update documentation
1 parent 3cae25f commit 3580035

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

CHANGES.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
11
# Changes for cratedb-toolkit
22

3+
34
## Unreleased
45

5-
- Refactor strategies `delete`, `reallocate`, and `snapshot`, to
6+
- SQLAlchemy: Add a few patches and polyfills, which do not fit well
7+
into the vanilla Python driver / SQLAlchemy dialect.
8+
9+
- Retention: Refactor strategies `delete`, `reallocate`, and `snapshot`, to
610
standalone variants.
711

8-
- Bundle configuration and runtime settings into `Settings` entity,
12+
- Retention: Bundle configuration and runtime settings into `Settings` entity,
913
and use more OO instead of weak dictionaries: Add `RetentionStrategy`,
1014
`TableAddress`, and `Settings` entities, to improve information passing
1115
throughout the application and the SQL templates.
1216

13-
- Add `--schema` option, and `CRATEDB_EXT_SCHEMA` environment variable,
17+
- Retention: Add `--schema` option, and `CRATEDB_EXT_SCHEMA` environment variable,
1418
to configure the database schema used to store the retention policy
1519
table. The default value is `ext`.
1620

17-
- Use full-qualified table names everywhere.
21+
- Retention: Use full-qualified table names everywhere.
1822

19-
- Fix: Compensate for `DROP REPOSITORY` now returning `RepositoryMissingException`
23+
- Retention: Fix: Compensate for `DROP REPOSITORY` now returning `RepositoryMissingException`
2024
when the repository does not exist. With previous versions of CrateDB, it was
2125
`RepositoryUnknownException`.
2226

23-
- Contrib: Add a few SQLAlchemy patches and polyfills, which do not fit well
24-
into the vanilla Python driver / SQLAlchemy dialect.
25-
2627

2728
## 2023/06/27 0.0.0
2829

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1-
# CrateDB data processing toolkit
1+
# CrateDB Toolkit
22

33
[![Tests](https://github.com/crate-workbench/cratedb-toolkit/actions/workflows/main.yml/badge.svg)](https://github.com/crate-workbench/cratedb-toolkit/actions/workflows/main.yml)
44
[![Test coverage](https://img.shields.io/codecov/c/gh/crate-workbench/cratedb-toolkit.svg)](https://codecov.io/gh/crate-workbench/cratedb-toolkit/)
5+
[![Python versions](https://img.shields.io/pypi/pyversions/cratedb-toolkit.svg)](https://pypi.org/project/cratedb-toolkit/)
6+
7+
[![License](https://img.shields.io/github/license/crate-workbench/cratedb-toolkit.svg)](https://github.com/crate-workbench/cratedb-toolkit/blob/main/LICENSE)
8+
[![Status](https://img.shields.io/pypi/status/cratedb-toolkit.svg)](https://pypi.org/project/cratedb-toolkit/)
9+
[![PyPI](https://img.shields.io/pypi/v/cratedb-toolkit.svg)](https://pypi.org/project/cratedb-toolkit/)
10+
[![Downloads](https://pepy.tech/badge/cratedb-toolkit/month)](https://pepy.tech/project/cratedb-toolkit/)
11+
512

613
» [Documentation]
714
| [Changelog]
@@ -33,7 +40,7 @@ strongly recommended, especially when you use it as a library.
3340

3441
Install package.
3542
```shell
36-
pip install --upgrade git+https://github.com/crate-workbench/cratedb-toolkit
43+
pip install --upgrade cratedb-toolkit
3744
```
3845

3946
Verify installation.
@@ -50,13 +57,14 @@ docker run --rm "ghcr.io/crate-workbench/cratedb-toolkit" cratedb-toolkit --vers
5057
## Development
5158

5259
For installing a development sandbox, please refer to the [development sandbox
53-
documentation](./doc/sandbox.md).
60+
documentation].
5461

5562

5663
[Changelog]: https://github.com/crate-workbench/cratedb-toolkit/blob/main/CHANGES.md
5764
[Community Forum]: https://community.crate.io/
5865
[CrateDB]: https://crate.io/products/cratedb
5966
[CrateDB Cloud]: https://console.cratedb.cloud/
67+
[development sandbox documentation]: https://github.com/crate-workbench/cratedb-toolkit/blob/main/doc/sandbox.md
6068
[Documentation]: https://cratedb-toolkit.readthedocs.io/
6169
[Issues]: https://github.com/crate-workbench/cratedb-toolkit/issues
6270
[License]: https://github.com/crate-workbench/cratedb-toolkit/blob/main/LICENSE

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ default-tag = "0.0.0"
1111

1212
[project]
1313
name = "cratedb-toolkit"
14-
description = "CrateDB data processing toolkit"
14+
description = "CrateDB Toolkit"
1515
readme = "README.md"
1616
keywords = [
1717
"cratedb",

0 commit comments

Comments
 (0)