Skip to content

Commit

Permalink
Bump version to 2.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelYochpaz committed Apr 28, 2024
1 parent 08519ee commit 99fc7a7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Changelog
## 2.5.4 [2024-04-28]
### Bug Fixes:
* Fixed an issue where if the `logs` directory does not exist, the folder isn't created, causing an error. ([Issue #67](https://github.com/MichaelYochpaz/iSubRip/issues/67))
* Fixed an issue where the summary log of successful and failed download would not account for failed downloads. ([Issue #68](https://github.com/MichaelYochpaz/iSubRip/issues/68))
---
## 2.5.3 [2024-04-09]
### Added:
* Added new `proxy` and `verify-ssl` settings to the config file, for allowing the usage of a proxy when making requests, and disabling SSL verification. See the updated [example config](https://github.com/MichaelYochpaz/iSubRip/blob/main/config.toml) for usage examples.
Expand All @@ -12,11 +17,11 @@
* Fixed an issue where an empty playlist (with a size of 0 bytes) would be reported as a valid playlist with no matching subtitles. ([Issue #65](https://github.com/MichaelYochpaz/iSubRip/issues/65))
---
## 2.5.2 [2024-01-06]
### Bug Fixes
### Bug Fixes:
* Fixed an issue where errors would not be handled gracefully, and cause an unexpected crash. ([Issue #55](https://github.com/MichaelYochpaz/iSubRip/issues/55))
---
## 2.5.1 [2023-12-23]
### Bug Fixes
### Bug Fixes:
* Fixed an issue where source abbreviation was missing from file names of downloaded subtitles files. ([Issue #53](https://github.com/MichaelYochpaz/iSubRip/issues/53))
---
## 2.5.0 [2023-12-16]
Expand All @@ -30,7 +35,7 @@
* Updated the CLI output to utilize logs and print with colors according to log-level.
* Improved error handling in some cases where an invalid URL is used.

### Bug Fixes
### Bug Fixes:
* Fixed an issue where if a movie is a pre-order with a set release date, a message with availability date wouldn't be printed in some cases.
---
## 2.4.3 [2023-06-18]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# iSubRip
A Python package for scraping and downloading subtitles from AppleTV / iTunes movie pages.
Latest version: 2.5.3 ([changelog](https://github.com/MichaelYochpaz/iSubRip/blob/main/CHANGELOG.md))
Latest version: 2.5.4 ([changelog](https://github.com/MichaelYochpaz/iSubRip/blob/main/CHANGELOG.md))

<br/>

Expand Down
2 changes: 1 addition & 1 deletion isubrip/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# General
PACKAGE_NAME = "isubrip"
PACKAGE_VERSION = "2.5.3"
PACKAGE_VERSION = "2.5.4"

# Logging
PREORDER_MESSAGE = ("'{movie_name}' is currently unavailable on {scraper_name}, "
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "isubrip"
version = "2.5.3"
version = "2.5.4"
description = "A Python package for scraping and downloading subtitles from AppleTV / iTunes movie pages."
license = "MIT"
authors = ["Michael Yochpaz"]
Expand Down

0 comments on commit 99fc7a7

Please sign in to comment.