From 71cdec7d98fa2c29d06034e8423b0b02deb7b4ae Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Thu, 25 Mar 2021 22:04:57 +0100 Subject: [PATCH] Add changelog (advances #7) --- CHANGELOG.rst | 116 +++++++++++++++++++++++++++++++++++++++++++++++++ pyproject.toml | 1 + 2 files changed, 117 insertions(+) create mode 100644 CHANGELOG.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..3a8e80d --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,116 @@ +Change Log +========== + +All notable changes to this project will be documented in this file. + +The format is based on `Keep a Changelog <http://keepachangelog.com/>`__ +and this project adheres to `Semantic +Versioning <http://semver.org/>`__. + +0.5.0 +----- + +Added +~~~~~ + +- Class method which gets the last week of a year + +Fixed +~~~~~ + +- Fix year detection at year turns + +0.4.7 +----- + +Changed +~~~~~~~ + +- Use default language from settings if language is not recognizable + +0.4.6 +----- + +Changed +~~~~~~~ + +- Don't add encondings in i18n functions + +0.4.5 +----- + +Changed +~~~~~~~ + +- Convert enums to lists for Django choices + +0.4.4 +----- + +Changed +~~~~~~~ + +- Leave empty locale unchanged when normalising + +0.4.1 +----- + +Changed +~~~~~~~ + +- Use system default encoding when normalising locale + +0.4.0 +----- + +Added +~~~~~ + +- Normalise locales + +0.3.1 +----- + +Fixed +~~~~~ + +- Fix a type cast for GET parameters + +0.3.0 +----- + +Added +~~~~~ + +- Allow passing first day of week to i18n_js +- Allow passing locale to all functions + +Fixed +~~~~~ + +- Fix bug in month_names that still had the dummy first element + +0.2.1 +----- + +Changed +~~~~~~~ + +- Let JS function return a full script + +0.2.0 +----- + +Added +~~~~~ + +- Functions for month names and abbreviationss +- JSON view for i18n + +0.1.1 +----- + +Added +~~~~~ + +- Provide functions for tuples and enumerations in i18n module diff --git a/pyproject.toml b/pyproject.toml index d1826b8..1c33623 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,7 @@ license = "Apache-2.0" homepage = "https://edugit.org/AlekSIS/libs/python-calendarweek" repository = "https://edugit.org/AlekSIS/libs/python-calendarweek" documentation = "https://edugit.org/AlekSIS/libs/python-calendarweek" +include = ["CHANGELOG.rst"] classifiers = [ "Development Status :: 4 - Beta", "Framework :: Django", -- GitLab