Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ body:
- Collections (part:collections)
- Date and time utilities (part:datetime)
- Documentation (part:docs)
- IDs (part:id)
- Mathemathics utilities (part:math)
- Module utilities (part:module)
- Logging utilities (part:logging)
- Type hints and typing (part:typing)
- Unit, integration and performance tests (part:tests)
validations:
Expand Down
3 changes: 3 additions & 0 deletions .github/keylabeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ caseSensitive: true
# Explicit keyword mappings to labels. Form of match:label. Required.
labelMappings:
"part:asyncio": "part:asyncio"
"part:collections": "part:collections"
"part:datetime": "part:datetime"
"part:docs": "part:docs"
"part:id": "part:id"
"part:logging": "part:logging"
"part:math": "part:math"
"part:module": "part:module"
"part:tests": "part:tests"
"part:tooling": "part:tooling"
"part:typing": "part:typing"
Expand Down
24 changes: 24 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@
- "tests/test_asyncio.py"
- "tests/asyncio/**"

"part:collections":
- changed-files:
- any-glob-to-any-file:
- "src/frequenz/core/collections.py"
- "src/frequenz/core/collections/**"
- "tests/test_collections.py"
- "tests/collections/**"

"part:datetime":
- changed-files:
- any-glob-to-any-file:
Expand All @@ -55,6 +63,14 @@
- "examples/**"
- LICENSE

"part:id":
- changed-files:
- any-glob-to-any-file:
- "src/frequenz/core/id.py"
- "src/frequenz/core/id/**"
- "tests/test_id.py"
- "tests/id/**"

"part:logging":
- changed-files:
- any-glob-to-any-file:
Expand All @@ -71,6 +87,14 @@
- "tests/test_math.py"
- "tests/math/**"

"part:module":
- changed-files:
- any-glob-to-any-file:
- "src/frequenz/core/module.py"
- "src/frequenz/core/module/**"
- "tests/test_module.py"
- "tests/module/**"

"part:tests":
- changed-files:
- any-glob-to-any-file:
Expand Down
17 changes: 7 additions & 10 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@

## Summary

<!-- Here goes a general summary of what this release is about -->
This is the initial release of the Frequenz Core Library, which provides a set of fundamental tools and utilities for Python.

## Upgrading
The library currently includes:

<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->
- `datetime`: For utilities related to dates and times.
* `id`: For creating unique system-wide ID types.
* `math`: For utilities related to math.
* `typing`: For type annotations and type-checking utilities.

## New Features

<!-- Here goes the main new features and examples or instructions on how to use them -->

## Bug Fixes

<!-- Here goes notable bug fixes that are worth a special mention or explanation -->
But more tools will be added in the future.
33 changes: 0 additions & 33 deletions src/frequenz/core/asyncio/__init__.py

This file was deleted.

Loading
Loading