From 40d24d57497ee1a1b9828be653ae4ac6cc1a1f98 Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Thu, 16 Apr 2026 14:39:09 -0700 Subject: [PATCH 1/3] add stub for new dev cycle --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17086a9..9cc5759 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,16 @@ 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.7.0] (04/16/2026) +### Added + +### Changed + +### Fixed + ### Added * Added support for ISA constants `"avx10"` and `"avx512_e5"` and CNR constants `"avx10"` and `"avx10,strict"` [gh-175](https://github.com/IntelPython/mkl-service/pull/175) From 71a85d03705935e6b75690798023fa3bcc65b470 Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Thu, 16 Apr 2026 14:39:17 -0700 Subject: [PATCH 2/3] bump version to 2.8.0dev0 --- mkl/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkl/_version.py b/mkl/_version.py index 2614ce9..6ef56c4 100644 --- a/mkl/_version.py +++ b/mkl/_version.py @@ -1 +1 @@ -__version__ = "2.7.0" +__version__ = "2.8.0dev0" From 20a87f0b5e00b72ec264a9add186c5302fe09a30 Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Thu, 16 Apr 2026 14:53:03 -0700 Subject: [PATCH 3/3] fix misplaced changelog categories --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cc5759..d613f9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [dev] (MM/DD/YYYY) -## [2.7.0] (04/16/2026) - ### Added ### Changed ### Fixed +## [2.7.0] (04/16/2026) + ### Added * Added support for ISA constants `"avx10"` and `"avx512_e5"` and CNR constants `"avx10"` and `"avx10,strict"` [gh-175](https://github.com/IntelPython/mkl-service/pull/175)