Skip to content

Commit 09b6b23

Browse files
committed
release v0.1.2
- GitHub Workflows. - Introduced `push-test.yml` workflow to automatically run tests on every push. - Added `python-publish.yml` workflow for Python package publishing. - Dynamic Versioning in Tests. - Refactored tests in `runtests.py`.
1 parent 6477cd1 commit 09b6b23

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.1.2] - 2024-11-01
4+
5+
### Added
6+
- GitHub Workflows.
7+
- Introduced `push-test.yml` workflow to automatically run tests on every push.
8+
- Added `python-publish.yml` workflow for Python package publishing.
9+
10+
### Changed
11+
- Dynamic Versioning in Tests.
12+
- Refactored tests in `runtests.py` to dynamically retrieve the `__version__` from `pyftrace/__init__.py`.
13+
14+
---
15+
316
## [0.1.1] - 2024-10-31
417

518
### Added

pyftrace/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.1.1"
1+
__version__ = "0.1.2"
22

33
from .tracer import Pyftrace

0 commit comments

Comments
 (0)