From 0b2d2114551e4531617e502376bfc622694cf792 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 15 Jan 2020 12:19:42 +0200 Subject: [PATCH] Version 0.4.1 --- CHANGELOG.md | 5 +++++ csv_metadata_quality/version.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b6c425..bee70d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.1] - 2020-01-15 +### Changed +- Reduce minimum Python version to 3.6 by working around the `is_normalized()` +that only works in Python >= 3.8 + ## [0.4.0] - 2020-01-15 ### Added - Unicode normalization (enable with `--unsafe-fixes`, see README.md) diff --git a/csv_metadata_quality/version.py b/csv_metadata_quality/version.py index 6cc293e..28afc05 100644 --- a/csv_metadata_quality/version.py +++ b/csv_metadata_quality/version.py @@ -1 +1 @@ -VERSION = "0.4.0" +VERSION = "0.4.1" diff --git a/setup.py b/setup.py index 7d7f0d4..89fa75d 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ install_requires = [ setuptools.setup( name="csv-metadata-quality", - version="0.4.0", + version="0.4.1", author="Alan Orth", author_email="aorth@mjanja.ch", description="A simple, but opinionated CSV quality checking and fixing pipeline for CSVs in the DSpace ecosystem.",