From 17941437c4a408a2681094e1d335223f09e9c2f6 Mon Sep 17 00:00:00 2001 From: Matias Bordese Date: Thu, 9 Mar 2023 21:49:01 -0300 Subject: [PATCH] Prepare release 0.7.5 --- .travis.yml | 4 ++-- AUTHORS | 2 ++ HISTORY | 6 ++++++ unidiff/__version__.py | 4 ++-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index aaf186b..d197c57 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ language: python python: - - "2.7" - - "3.6" - "3.7" - "3.8" - "3.9" + - "3.10" + - "3.11" script: ./run_tests.sh diff --git a/AUTHORS b/AUTHORS index d3e357d..da54c72 100644 --- a/AUTHORS +++ b/AUTHORS @@ -32,3 +32,5 @@ Contributors * Ronuk Raval (`@rraval`) * anthony sottile (`@asottile-sentry`) * (`@cpackham-atlnz`) + * David Leen (`@dleen`) + * Martin Liška (`@marxin`) diff --git a/HISTORY b/HISTORY index f06cdf2..338cf4a 100644 --- a/HISTORY +++ b/HISTORY @@ -1,6 +1,12 @@ History ------- +0.7.5 - 2023-03-09 +------------------ + +* Fixed issue with spaces in filename when using custom git prefix. +* Support binary patch format. + 0.7.4 - 2022-06-26 ------------------ diff --git a/unidiff/__version__.py b/unidiff/__version__.py index 0448fe8..bc76575 100644 --- a/unidiff/__version__.py +++ b/unidiff/__version__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # The MIT License (MIT) -# Copyright (c) 2014-2022 Matias Bordese +# Copyright (c) 2014-2023 Matias Bordese # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -21,4 +21,4 @@ # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE # OR OTHER DEALINGS IN THE SOFTWARE. -__version__ = '0.7.4' +__version__ = '0.7.5'