From 65382f03028e3c2bc0cfe68b0677242f9e5578c0 Mon Sep 17 00:00:00 2001 From: Kim Blomqvist Date: Sun, 23 Aug 2020 11:00:47 +0300 Subject: [PATCH] Bump to version 4.4 --- CHANGES.md | 13 +------------ yasha/yasha.py | 2 +- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 17caa15..a06913a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,18 +1,7 @@ -Version 5.0 ------------ - -Major release, unreleased - -- Dropped support for Python 2.7. -- The option `--keep-trailing-newline` was removed in favor of making - it default. The old behaviour can be achieved with the new option - `--remove-trailing-newline`. -- Fixed Jinja 2.11.x compatability issue (gh-60). - Version 4.4 ----------- -Minor release (last with Python 2.7 support), unreleased +Minor release (last with Python 2.7 support), 23 Aug 2020 - Fixed an exit code in case of undefined variable from 0 to 1. - Fixed a bug that caused extension classes not to load. diff --git a/yasha/yasha.py b/yasha/yasha.py index 6010620..ddb233b 100644 --- a/yasha/yasha.py +++ b/yasha/yasha.py @@ -27,7 +27,7 @@ import csv import jinja2 as jinja -__version__ = "4.3" +__version__ = "4.4" ENCODING = 'utf-8' EXTENSION_FILE_FORMATS = ('.py', '.yasha', '.j2ext', '.jinja-ext')