Skip to content

Commit

Permalink
release v0.1.2
Browse files Browse the repository at this point in the history
- 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`.
  • Loading branch information
kangtegong committed Oct 31, 2024
1 parent 6477cd1 commit 09b6b23
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.1.2] - 2024-11-01

### Added
- GitHub Workflows.
- Introduced `push-test.yml` workflow to automatically run tests on every push.
- Added `python-publish.yml` workflow for Python package publishing.

### Changed
- Dynamic Versioning in Tests.
- Refactored tests in `runtests.py` to dynamically retrieve the `__version__` from `pyftrace/__init__.py`.

---

## [0.1.1] - 2024-10-31

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyftrace/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.1.1"
__version__ = "0.1.2"

from .tracer import Pyftrace

0 comments on commit 09b6b23

Please sign in to comment.