From a7a6902bc665f2f205efd3cb8b5791c72dcc229d Mon Sep 17 00:00:00 2001 From: Daigo Tanaka Date: Thu, 18 Jan 2024 02:36:15 +0000 Subject: [PATCH] bump version to 0.1.1 --- HISTORY.md | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index d2d7d8d..2c4cdfd 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ ## History +### 0.1.1 (2024-01-17) + +- Support Bulk Import for V4 + ### 0.1.0 (2021-01-14) - Forked from PyPardot4 and made the initial release of PyPardotSF, adding diff --git a/setup.py b/setup.py index c22361b..9dfe8e2 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python from setuptools import setup -VERSION = "0.1.0" +VERSION = "0.1.1" with open("README.md", "r") as fh: long_description = fh.read()