Skip to content

Commit

Permalink
Bump version to 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TRoboto committed Aug 13, 2021
1 parent dd7129a commit c232496
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="datacamp-downloader",
version="3.0",
version="3.1",
author="Mohammad Al-Fetyani",
author_email="m4bh@hotmail.com",
description="Download your completed courses on Datacamp easily!",
Expand Down
2 changes: 1 addition & 1 deletion src/datacamp_downloader/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
LOGIN_URL = "https://www.datacamp.com/users/sign_in"
LOGIN_DETAILS_URL = "https://www.datacamp.com/api/users/signed_in"

SESSION_FILE = tempfile.gettempdir() + "/.datacamp.v2"
SESSION_FILE = tempfile.gettempdir() + "/.datacamp.v3"

PROFILE_URL = "https://www.datacamp.com/profile/{slug}"
COURSE_DETAILS_API = "https://campus-api.datacamp.com/api/courses/{id}/"
Expand Down
2 changes: 1 addition & 1 deletion src/datacamp_downloader/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .helper import Logger
from .templates.lang import Language

__version__ = "3.0.0"
__version__ = "3.1.0"


def version_callback(value: bool):
Expand Down

0 comments on commit c232496

Please sign in to comment.