Skip to content

Commit

Permalink
Release version 1.49.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lcognat committed Sep 1, 2022
1 parent 0514868 commit fa082f4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
16 changes: 11 additions & 5 deletions CHANGELOG.md
Expand Up @@ -4,11 +4,7 @@

### Added

- Management command to get database connection string, could be used with pg_dump (`pg_dump --dbname=$CONNECTION_STRING`) see [https://www.postgresql.org/docs/14/libpq-connect.html](documentation)

```bash
/usr/bin/pg_dump --dbname=`python3 manage.py db_connection_string` | bzip2 --fast > backup.sql.bzip2
```
- nothing added

### Changed

Expand All @@ -18,6 +14,16 @@

- nothing removed

## [1.49.0] - 2022-09-01

### Added

- Management command to get database connection string, could be used with pg_dump (`pg_dump --dbname=$CONNECTION_STRING`) see [https://www.postgresql.org/docs/14/libpq-connect.html](documentation)

```bash
/usr/bin/pg_dump --dbname=`python3 manage.py db_connection_string` | bzip2 --fast > backup.sql.bzip2
```

## [1.48.0] - 2022-06-16

### Changed
Expand Down
2 changes: 1 addition & 1 deletion concrete_datastore/__init__.py
@@ -1,7 +1,7 @@
# coding: utf-8


VERSION = (1, 48, 0)
VERSION = (1, 49, 0)


def get_version(version=VERSION):
Expand Down

0 comments on commit fa082f4

Please sign in to comment.