Skip to content

Commit

Permalink
Merge pull request #991 from vantage6/release/4.2
Browse files Browse the repository at this point in the history
Release/4.2
  • Loading branch information
bartvanb committed Jan 19, 2024
2 parents bddd5ac + 7d9da18 commit 0380363
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 10 deletions.
6 changes: 2 additions & 4 deletions docker/node-and-server.Dockerfile
Expand Up @@ -16,11 +16,9 @@ LABEL maintainer="Frank Martin <f.martin@iknl.nl>"
RUN apt update -y
RUN apt upgrade -y

# TODO 2024-01-09 check if this custom install is still needed. It was used to
# fix problems with the sqlalchemy dependency psycopg2 at some point.
# # Fix DB issue
# RUN apt install python-psycopg2 -y
# RUN pip install psycopg2-binary
RUN apt install python-psycopg2 -y
RUN pip install psycopg2-binary

# copy source
COPY . /vantage6
Expand Down
9 changes: 9 additions & 0 deletions docs/release_notes.rst
@@ -1,6 +1,15 @@
Release notes
=============

4.2.1
-----

*19 January 2024*

- **Bugfix**
- Add back binary installation of ``psycopg2`` to support Postgres databases
(`PR#932 <https://github.com/vantage6/vantage6/pull/932>`_).

4.2.0
-----

Expand Down
Expand Up @@ -7,7 +7,7 @@
__build__ = json.load(fp)

# Module version
version_info = (4, 2, 0, 'final', __build__, 0)
version_info = (4, 2, 1, 'final', __build__, 0)

# Module version stage suffix map
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
Expand Down
2 changes: 1 addition & 1 deletion vantage6-client/vantage6/client/_version.py
Expand Up @@ -7,7 +7,7 @@
__build__ = json.load(fp)

# Module version
version_info = (4, 2, 0, 'final', __build__, 0)
version_info = (4, 2, 1, 'final', __build__, 0)

# Module version stage suffix map
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
Expand Down
2 changes: 1 addition & 1 deletion vantage6-common/vantage6/common/_version.py
Expand Up @@ -7,7 +7,7 @@
__build__ = json.load(fp)

# Module version
version_info = (4, 2, 0, 'final', __build__, 0)
version_info = (4, 2, 1, 'final', __build__, 0)

# Module version stage suffix map
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
Expand Down
2 changes: 1 addition & 1 deletion vantage6-node/vantage6/node/_version.py
Expand Up @@ -7,7 +7,7 @@
__build__ = json.load(fp)

# Module version
version_info = (4, 2, 0, 'final', __build__, 0)
version_info = (4, 2, 1, 'final', __build__, 0)

# Module version stage suffix map
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
Expand Down
2 changes: 1 addition & 1 deletion vantage6-server/vantage6/server/_version.py
Expand Up @@ -7,7 +7,7 @@
__build__ = json.load(fp)

# Module version
version_info = (4, 2, 0, 'final', __build__, 0)
version_info = (4, 2, 1, 'final', __build__, 0)

# Module version stage suffix map
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
Expand Down
2 changes: 1 addition & 1 deletion vantage6/vantage6/cli/_version.py
Expand Up @@ -7,7 +7,7 @@
__build__ = json.load(fp)

# Module version
version_info = (4, 2, 0, 'final', __build__, 0)
version_info = (4, 2, 1, 'final', __build__, 0)

# Module version stage suffix map
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
Expand Down

0 comments on commit 0380363

Please sign in to comment.