Skip to content

Commit 29aff1b

Browse files
committed
Bump version to 0.3.0 and update changelog
1 parent c5ff8af commit 29aff1b

5 files changed

Lines changed: 23 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.2.0] - 2024-01-16
8+
## [0.3.0] - 2026-01-28
9+
10+
### Added
11+
- Markdown support in Sphinx documentation via myst-parser
12+
- Test initialization example for SDK validation
13+
- Production credentials in .env file for testing
14+
15+
### Fixed
16+
- Class name corrected from SteadastClient to SteadfastClient throughout codebase
17+
- Sphinx documentation build warnings resolved
18+
- GitHub Actions artifact upload action updated to v4
19+
- Badge URLs fixed to use correct GitHub Actions workflow paths
20+
21+
### Changed
22+
- Documentation build no longer treats warnings as errors
23+
- Removed non-existent _static path from Sphinx configuration
24+
25+
## [0.2.0] - 2026-01-29
926

1027
### Added
1128
- ReadTheDocs integration for automatic documentation publishing
@@ -27,7 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2744
- PyPI Trusted Publisher configuration for secure automated publishing
2845
- Documentation build configuration for ReadTheDocs
2946

30-
## [0.1.0] - 2024-01-15
47+
## [0.1.0] - 2026-01-28
3148

3249
### Added
3350
- Initial release of Steadfast Courier Python SDK

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
project = "Steadfast Courier Python SDK"
88
copyright = "2026, Md Mojno Miya"
99
author = "Md Mojno Miya"
10-
release = "0.2.0"
10+
release = "0.3.0"
1111

1212
extensions = [
1313
"sphinx.ext.autodoc",

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,6 @@ MIT License - See LICENSE file for details
249249

250250
## Version
251251

252-
Current version: 0.2.0
252+
Current version: 0.3.0
253253

254254
See [CHANGELOG](../CHANGELOG.md) for version history.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="steadfast-python",
8-
version="0.2.0",
8+
version="0.3.0",
99
author="Md Mojno Miya",
1010
author_email="your.email@example.com",
1111
description="Python SDK for Steadfast Courier API",

steadfast/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
PoliceStationList,
2626
)
2727

28-
__version__ = "0.2.0"
28+
__version__ = "0.3.0"
2929

3030
__all__ = [
3131
"SteadfastClient",

0 commit comments

Comments
 (0)