Skip to content

Commit

Permalink
0.3.0: refactoring + API change
Browse files Browse the repository at this point in the history
- NOTE this is the same as 0.2.17!
  - updated to 0.3.0 to be better compliant with semantic versioning practice of updating the version number when making backwards INCOMPATIBLE changes(https://semver.org/)
- no change in functionality, just changes in how things work under the hood and how to instantiate instances and call methods
  - updated ListGenerator() -> ListCreator()
    - no python generators are used in this program, so renamed to avoid being misleading and avoid potential confusion
  - updated create_list() -> create_list_for()
    - this is a more clear and obvious name that clearly describes what the method does
  - everything else is under the hood changes to how functions are invoked, user input is checked, functions/variables are named, code is organized (whitespace), import statements are organized, and user input is loaded (via tuple packing into instance_attributes in __init__.py and unpacking when loaded into execute.logic())
  • Loading branch information
shailshouryya committed Apr 25, 2020
1 parent 857c375 commit 2a8690d
Show file tree
Hide file tree
Showing 2 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 @@ -11,7 +11,7 @@

setup(
name = 'yt_videos_list',
version = '0.2.17',
version = '0.3.0',
description = 'Python package to extract YouTube video titles and corresponding URLs for a specific channel and write the information to CSV and txt files with sections to mark a particular video as watched, to mark a video for rewatching, and for taking notes.',
long_description = long_description,
long_description_content_type = 'text/markdown',
Expand Down
4 changes: 2 additions & 2 deletions yt_videos_list/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


'''
version: 0.2.17
version: 0.3.0
author: Shail-Shouryya
development_status: 4 - Beta
intended_audience: Developers, Hobbyists
Expand All @@ -12,7 +12,7 @@
'''


__version__ = '0.2.17'
__version__ = '0.3.0'
__author__ = 'Shail-Shouryya'
__development_status__ = '4 - Beta'
__intended_audience__ = 'Developers, Hobbyists'
Expand Down

0 comments on commit 2a8690d

Please sign in to comment.