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
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-ast
- id: check-builtin-literals
Expand Down Expand Up @@ -37,7 +37,7 @@ repos:
- tomli

- repo: https://github.com/psf/black
rev: 25.1.0
rev: 25.9.0
hooks:
- id: black
exclude: "_vendored/conv_template.py"
Expand All @@ -49,13 +49,13 @@ repos:
args: ["-i"]

- repo: https://github.com/MarcoGorelli/cython-lint
rev: v0.16.6
rev: v0.17.0
hooks:
- id: cython-lint
- id: double-quote-cython-strings

- repo: https://github.com/pycqa/flake8
rev: 7.1.2
rev: 7.3.0
hooks:
- id: flake8
args: ["--config=.flake8"]
Expand All @@ -64,7 +64,7 @@ repos:
- flake8-bugbear==24.4.26

- repo: https://github.com/pycqa/isort
rev: 6.0.1
rev: 6.1.0
hooks:
- id: isort
name: isort (python)
Expand All @@ -76,7 +76,7 @@ repos:
types: [pyi]

- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.14.0
rev: v2.15.0
hooks:
- id: pretty-format-toml
args: [--autofix]
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [dev] (MM/DD/YYYY)
## [2.6.0] (10/06/2025)

### Added
* Enabled support of Python 3.14 [gh-100](https://github.com/IntelPython/mkl-service/pull/100)

### Changed
* Used `GIT_DESCRIBE_TAG` and `GIT_DESCRIBE_NUMBER` in `meta.yaml` instead of manual stepping the numbers [gh-98](github.com/IntelPython/mkl-service/pull/98)

## [2.5.2] (07/01/2025)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion mkl/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.6.0dev0"
__version__ = "2.6.0"
Loading