From 115227b3ccc5b2e1a77aad66203ae43668c32c5c Mon Sep 17 00:00:00 2001 From: idle sign Date: Sat, 5 Dec 2020 12:13:37 +0700 Subject: [PATCH] Release v1.0.0 --- CHANGELOG | 4 ++-- datafixtures/__init__.py | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ba8cc87..9e2fc22 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,8 +2,8 @@ pytest-datafixtures changelog ============================= -Unreleased ----------- +v1.0.0 [2020-12-05] +------------------- + 'datafix_read' now can represent result as StringIO. + Added new 'datafix_readbin' fixture. diff --git a/datafixtures/__init__.py b/datafixtures/__init__.py index 3bf7944..8296168 100644 --- a/datafixtures/__init__.py +++ b/datafixtures/__init__.py @@ -1,8 +1,7 @@ -VERSION = (0, 1, 0) +VERSION = (1, 0, 0) """Application version number tuple.""" VERSION_STR = '.'.join(map(str, VERSION)) """Application version number string.""" -