From 1670e4a79392a6fb5acda65305f9d4ee1b66542a Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 13 Oct 2024 17:58:37 +0200 Subject: [PATCH] release 3.3.0 --- CHANGELOG.md | 2 +- pyproject.toml | 2 +- setup.py.legacy | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f534b431..965b9f53b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 3.dev +## 3.3.0 * Adjustment: option [auth] htpasswd_encryption change default from "md5" to "autodetect" * Add: option [auth] type=ldap with (group) rights management via LDAP/LDAPS diff --git a/pyproject.toml b/pyproject.toml index 7db571a77..4e8e2dd0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "Radicale" # When the version is updated, a new section in the CHANGELOG.md file must be # added too. readme = "README.md" -version = "3.dev" +version = "3.3.0" authors = [{name = "Guillaume Ayoub", email = "guillaume.ayoub@kozea.fr"}] license = {text = "GNU GPL v3"} description = "CalDAV and CardDAV Server" diff --git a/setup.py.legacy b/setup.py.legacy index dc7160acf..95717e6a8 100644 --- a/setup.py.legacy +++ b/setup.py.legacy @@ -19,7 +19,7 @@ from setuptools import find_packages, setup # When the version is updated, a new section in the CHANGELOG.md file must be # added too. -VERSION = "3.2.3" +VERSION = "3.3.0" with open("README.md", encoding="utf-8") as f: long_description = f.read()