Skip to content

Commit

Permalink
Merge pull request #26 from sudiptob2/release/1.0.0
Browse files Browse the repository at this point in the history
Release/1.0.0
  • Loading branch information
sudiptob2 authored Sep 27, 2022
2 parents 5964074 + 0cd52aa commit 204938b
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 9 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,20 @@ Features:

- schedule for 2 problem difficulty
- python 3.8 support
- notification icon support
- notification icon support

## 1.0.0 (Alpha)

Breaking change:

- `leeteasy start` implemented

Feature:

- `--sleep_duration` option added
- `leeteasy stop` command implemented

Fix:

- Null notification sent when problem difficulty is not in the target difficulty fixed.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ python -m leeteasy start 14:30 --difficulty medium &
```
This will schedule leeteasy for **Easy and Medium** problem.
<br/>
<br/>
To stop leeteasy
```shell
python -m leeteasy stop
Expand Down
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
requests~=2.28.1
click~=8.1.3
schedule~=1.1.0
click==8.1.3
idna==3.4
notify-py==0.3.3
requests==2.28.1
schedule==1.1.0
11 changes: 6 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = leeteasy
version = 0.1.3
version = 1.0.0
author = Sudipto Baral
author_email = [email protected]
description = Desktop notification of easy daily challenge of leetcode.
Expand All @@ -9,7 +9,7 @@ long_description_content_type = text/markdown
url = https://github.com/sudiptob2/leet-easy

classifiers =
Development Status :: 2 - Pre-Alpha
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Information Technology
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Expand All @@ -28,10 +28,11 @@ python_requires = >=3.8
include_package_data = True

install_requires =
requests~=2.28.1
click~=8.1.3
schedule~=1.1.0
click==8.1.3
idna==3.4
notify-py==0.3.3
requests==2.28.1
schedule==1.1.0

[options.packages.find]
where =
Expand Down

0 comments on commit 204938b

Please sign in to comment.