Skip to content

Commit 0f01fbc

Browse files
committed
bump version
1 parent 743be8a commit 0f01fbc

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.MD

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ All notable changes to this project will be documented in this file.
8080
### Improved
8181
- The package now uses bpsapi.rajtech.me/latest/{category} instead of the params method for list and latest
8282

83-
## v1.4 - 12/8/24
83+
## v1.4.0 - 12/8/24
8484

8585
### Fixed
8686
- CircularChecker's false positives
@@ -98,4 +98,14 @@ All notable changes to this project will be documented in this file.
9898
- Fixed type hints having `or` instead of |
9999

100100
### Improved
101-
- Many little improvements
101+
- Many little improvements
102+
103+
## v1.5.0 - 13/2/25
104+
105+
### Changed
106+
- The package is now a folder instead of a single python file
107+
- CircularChecker now caches only a single integer instead of all previous circulars
108+
- CircularChecker now uses the new API endpoint for new circulars
109+
110+
### Added
111+
- The ability to use list() latest() search() getpng() without creating an instance of API class

pybpsapi/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def __init__(
175175
f.write(b'')
176176

177177
else:
178-
raise ValueError("Invalid cache method. Only mysql and sqlite allowed")
178+
raise ValueError("Invalid cache method. Only mysql, sqlite, pickle allowed")
179179

180180
# For sqlite and mysql, create a table if it doesn't exist in the database
181181
if self.cache_method in ('sqlite', 'mysql'):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pybpsapi"
3-
version = "1.4.1"
3+
version = "1.5.0"
44
description = "This package is a Python wrapper for the BPS Circular API. It supports all the five endpoints of the API, and also contains a good circular-checking system."
55
author = "Raj Dave"
66
author-email = "[email protected]"

test.py

Whitespace-only changes.

0 commit comments

Comments
 (0)