From 1eb1594055bd0beb279cd1a3a3a793032b5b3170 Mon Sep 17 00:00:00 2001 From: jorrick Date: Sun, 31 Jul 2022 20:24:50 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Version=200.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/release-notes.md | 16 +++++++++++----- src/ical_library/__init__.py | 2 +- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index 5ca909c..7812615 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,13 +2,19 @@ ## Latest Changes -## 0.0.1b0 -- 🎨 Update name of package on Pypi -- 📝 Update buttons +## 0.1.0 +- 📝 Add emoji to features docs. +- ✅ Add tests for CalAddress. +- 🐛 Defaultlist gave None when using `.get`. +- 🐛 Function arg date type should match other arg. +- 🐛 Remove unwanted commented code. +- 🐛 Remove unwanted print. +- 🎨 Update name of package on Pypi. +- 📝 Update buttons. ## 0.0.1a1 -- 📝 Update PyPi package description -- 🔧 Remove auto tagging pipeline +- 📝 Update PyPi package description. +- 🔧 Remove auto tagging pipeline. ## 🚀 0.0.1a0 Initial release - ✅ Easy python interface. It's as simple as '`client.load_ics_file("").timeline`' to show all your events of that week. diff --git a/src/ical_library/__init__.py b/src/ical_library/__init__.py index 9f8f346..36e6960 100644 --- a/src/ical_library/__init__.py +++ b/src/ical_library/__init__.py @@ -1,7 +1,7 @@ """ Fast, yet simple, iCalendar reader with excellent recurrence support. """ -__version__ = "0.0.1a1" +__version__ = "0.1.0" from ical_library.cache_client import CacheClient from ical_library.exceptions import *