Skip to content

Commit e1158f7

Browse files
author
Leo Kirchner
committed
prepares release 1.9.0
1 parent f69c24d commit e1158f7

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## v1.9.0 - 2023-10-16
4+
5+
### Added
6+
7+
- #220 - Implement DiffSyncModelFlags.NATURAL_DELETION_ORDER.
8+
9+
### Changed
10+
11+
- #219 - Type hinting overhaul
12+
13+
### CI
14+
15+
- #244 - Pin poetry
16+
317
## v1.8.0 - 2023-04-18
418

519
### Added

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ FROM python:${PYTHON_VER}-slim
55
RUN apt-get update && apt-get install -y --no-install-recommends \
66
build-essential \
77
redis \
8+
curl \
89
&& rm -rf /var/lib/apt/lists/*
910

10-
RUN pip install --upgrade pip \
11-
&& pip install poetry
12-
11+
RUN pip install --upgrade pip
12+
ENV POETRY_VERSION=1.5.1
13+
RUN curl -sSL https://install.python-poetry.org | python3
14+
ENV PATH="/root/.local/bin:$PATH"
1315

1416
WORKDIR /local
1517
COPY pyproject.toml /local

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "diffsync"
3-
version = "1.7.0"
3+
version = "1.9.0"
44
description = "Library to easily sync/diff/update 2 different data sources"
55
authors = ["Network to Code, LLC <info@networktocode.com>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)