From 492722f7ae145a6320e05e60827b8513a6b89a5e Mon Sep 17 00:00:00 2001 From: Florian Demmer Date: Sun, 7 Aug 2022 18:23:50 +0200 Subject: [PATCH] Set version 2.2.0 --- CHANGELOG.md | 6 ++++++ setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e08af1..a5f5d27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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). +## [2.2.0] - 2022-08-07 + +- Attempt to load static files from disk when using `ManifestStaticFilesStorage` (#48) +- Add debug logging to django_url_fetcher +- Add Python 3.10 and Django 4.1 to test matrix, remove Django 2.2 + ## [1.1.0.post2] - 2022-02-24 Another post-release backporting fixes from 2.x for those still using WeasyPrint/Cairo. diff --git a/setup.cfg b/setup.cfg index 06caab5..d83a6de 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.0 +current_version = 2.2.0 message = Set version {new_version} commit = True tag = True diff --git a/setup.py b/setup.py index 61141dd..c22eeb3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -VERSION = '2.1.0' +VERSION = '2.2.0' github_url = 'https://github.com/fdemmer/django-weasyprint'