Skip to content

Commit ca818b1

Browse files
committed
making sure all releases are noted
1 parent 320e4bf commit ca818b1

File tree

7 files changed

+791
-3
lines changed

7 files changed

+791
-3
lines changed

CHANGELOG.md

Lines changed: 383 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ Read the Full Documentation [here](https://devsetgo.github.io/devsetgo_lib/).
4040
- **CSV, JSON, and Text File Functions**: Create, read, write, and manipulate various file types with ease.
4141
- **Folder Functions**: Create and remove directories, list directory contents, and manage file system operations efficiently.
4242

43+
- **File Moving**:
44+
Move files from one directory to another, with an option to compress the file being moved.
45+
4346
- **Logging**:
4447
Comprehensive logging setup using the [Loguru Library]('https://loguru.readthedocs.io/en/stable/overview.html'). Provides extensive customization options for log configuration, including log rotation, retention, and formatting. Includes improvements for multiprocessing environments to ensure log messages are handled correctly across multiple processes.
4548

@@ -58,6 +61,14 @@ Read the Full Documentation [here](https://devsetgo.github.io/devsetgo_lib/).
5861
- Configuration and management of asynchronous database sessions.
5962
- CRUD operations with async support.
6063

64+
## Quick Reference
65+
66+
- Logging & Config Setup
67+
- FastAPI Endpoints
68+
- Calendar & Date Utilities
69+
- Pattern Matching
70+
- CSV & JSON Helpers
71+
6172
---
6273
## Installation
6374

coverage.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" ?>
2-
<coverage version="7.7.1" timestamp="1744416860451" lines-valid="837" lines-covered="239" line-rate="0.2855" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
2+
<coverage version="7.7.1" timestamp="1744418596400" lines-valid="837" lines-covered="239" line-rate="0.2855" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
33
<!-- Generated by coverage.py: https://coverage.readthedocs.io/en/7.7.1 -->
44
<!-- Based on https://raw.githubusercontent.com/cobertura/web/master/htdocs/xml/coverage-04.dtd -->
55
<sources>

docs/index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ Read the Full Documentation [here](https://devsetgo.github.io/devsetgo_lib/).
4040
- **CSV, JSON, and Text File Functions**: Create, read, write, and manipulate various file types with ease.
4141
- **Folder Functions**: Create and remove directories, list directory contents, and manage file system operations efficiently.
4242

43+
- **File Moving**:
44+
Move files from one directory to another, with an option to compress the file being moved.
45+
4346
- **Logging**:
4447
Comprehensive logging setup using the [Loguru Library]('https://loguru.readthedocs.io/en/stable/overview.html'). Provides extensive customization options for log configuration, including log rotation, retention, and formatting. Includes improvements for multiprocessing environments to ensure log messages are handled correctly across multiple processes.
4548

@@ -58,6 +61,14 @@ Read the Full Documentation [here](https://devsetgo.github.io/devsetgo_lib/).
5861
- Configuration and management of asynchronous database sessions.
5962
- CRUD operations with async support.
6063

64+
## Quick Reference
65+
66+
- Logging & Config Setup
67+
- FastAPI Endpoints
68+
- Calendar & Date Utilities
69+
- Pattern Matching
70+
- CSV & JSON Helpers
71+
6172
---
6273
## Installation
6374

docs/release-notes.md

Lines changed: 383 additions & 0 deletions
Large diffs are not rendered by default.

report.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?xml version="1.0" encoding="utf-8"?><testsuites><testsuite name="pytest" errors="0" failures="0" skipped="0" tests="0" time="1.938" timestamp="2025-04-12T00:14:18.783023+00:00" hostname="9c86f460353c" /></testsuites>
1+
<?xml version="1.0" encoding="utf-8"?><testsuites><testsuite name="pytest" errors="0" failures="0" skipped="0" tests="0" time="1.990" timestamp="2025-04-12T00:43:14.636814+00:00" hostname="9c86f460353c" /></testsuites>

scripts/changelog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import asyncio
77

88
async def get_github_releases():
9-
url = f"https://api.github.com/repos/devsetgo/devsetgo_lib/releases"
9+
url = f"https://api.github.com/repos/devsetgo/devsetgo_lib/releases?per_page=1000"
1010
async with httpx.AsyncClient() as client:
1111
response = await client.get(url)
1212
response.raise_for_status() # Raise an exception if the request was unsuccessful

0 commit comments

Comments
 (0)