Skip to content

Commit 204938b

Browse files
authored
Merge pull request #26 from sudiptob2/release/1.0.0
Release/1.0.0
2 parents 5964074 + 0cd52aa commit 204938b

File tree

4 files changed

+28
-9
lines changed

4 files changed

+28
-9
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,20 @@ Features:
66

77
- schedule for 2 problem difficulty
88
- python 3.8 support
9-
- notification icon support
9+
- notification icon support
10+
11+
## 1.0.0 (Alpha)
12+
13+
Breaking change:
14+
15+
- `leeteasy start` implemented
16+
17+
Feature:
18+
19+
- `--sleep_duration` option added
20+
- `leeteasy stop` command implemented
21+
22+
Fix:
23+
24+
- Null notification sent when problem difficulty is not in the target difficulty fixed.
25+

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ python -m leeteasy start 14:30 --difficulty medium &
2525
```
2626
This will schedule leeteasy for **Easy and Medium** problem.
2727
<br/>
28+
<br/>
2829
To stop leeteasy
2930
```shell
3031
python -m leeteasy stop

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
requests~=2.28.1
2-
click~=8.1.3
3-
schedule~=1.1.0
1+
click==8.1.3
2+
idna==3.4
43
notify-py==0.3.3
4+
requests==2.28.1
5+
schedule==1.1.0

setup.cfg

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = leeteasy
3-
version = 0.1.3
3+
version = 1.0.0
44
author = Sudipto Baral
55
author_email = [email protected]
66
description = Desktop notification of easy daily challenge of leetcode.
@@ -9,7 +9,7 @@ long_description_content_type = text/markdown
99
url = https://github.com/sudiptob2/leet-easy
1010

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

3030
install_requires =
31-
requests~=2.28.1
32-
click~=8.1.3
33-
schedule~=1.1.0
31+
click==8.1.3
32+
idna==3.4
3433
notify-py==0.3.3
34+
requests==2.28.1
35+
schedule==1.1.0
3536

3637
[options.packages.find]
3738
where =

0 commit comments

Comments
 (0)