-
Notifications
You must be signed in to change notification settings - Fork 445
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ name = "Radicale" | |
# When the version is updated, a new section in the CHANGELOG.md file must be | ||
# added too. | ||
readme = "README.md" | ||
version = "3.3.1.dev" | ||
authors = [{name = "Guillaume Ayoub", email = "[email protected]"}] | ||
version = "3.3.1" | ||
authors = [{name = "Guillaume Ayoub", email = "[email protected]"}, {name = "Unrud", email = "[email protected]"}] | ||
license = {text = "GNU GPL v3"} | ||
description = "CalDAV and CardDAV Server" | ||
keywords = ["calendar", "addressbook", "CalDAV", "CardDAV"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# This file is part of Radicale - CalDAV and CardDAV server | ||
# Copyright © 2009-2017 Guillaume Ayoub | ||
# Copyright © 2017-2018 Unrud <[email protected]> | ||
# Copyright © 2024-2024 Peter Bieringer <[email protected]> | ||
# | ||
# This library is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -19,7 +20,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.3.1.dev" | ||
VERSION = "3.3.1" | ||
|
||
with open("README.md", encoding="utf-8") as f: | ||
long_description = f.read() | ||
|