diff options
author | nico <nico@magicbroccoli.de> | 2020-02-13 23:41:25 +0100 |
---|---|---|
committer | nico <nico@magicbroccoli.de> | 2020-02-13 23:41:25 +0100 |
commit | 462d108b2a59e82d71488fe1740944053146fa2c (patch) | |
tree | cc1289d3c22df52a19e0de55527b2cc650f5d738 | |
parent | 6642b4d0a08ef8eb7863f0fdfceaf92290c95c21 (diff) |
+ push version to 0.2
* update README.md
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | TSGroupAssigner/__init__.py | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -29,11 +29,11 @@ params = { 'gid': 24 } -target = dt.date(year=2019, month=24, day=12) +target = dt.date(year=2020, month=2, day=14) duration = dt.timedelta(days=2) try: - GroupAssigner(date=target, delta=duration, **params).start() + GroupAssigner(date=target, nick="James", delta=duration, **params).start() except DateException as err: logger.error(err) ``` diff --git a/TSGroupAssigner/__init__.py b/TSGroupAssigner/__init__.py index f8d4327..971640a 100644 --- a/TSGroupAssigner/__init__.py +++ b/TSGroupAssigner/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # version -__version__ = "0.1.1" +__version__ = "0.2" # modules from .group_assign import GroupAssigner |