git: e39d3a6b3233 - main - pmc.h: bump PMC_VERSION_MINOR

From: Mitchell Horne <mhorne_at_FreeBSD.org>
Date: Mon, 16 Mar 2026 23:39:48 UTC
The branch main has been updated by mhorne:

URL: https://cgit.FreeBSD.org/src/commit/?id=e39d3a6b32331437da6c13a4aeb67e5bcca67625

commit e39d3a6b32331437da6c13a4aeb67e5bcca67625
Author:     Mitchell Horne <mhorne@FreeBSD.org>
AuthorDate: 2026-03-16 23:35:35 +0000
Commit:     Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2026-03-16 23:39:31 +0000

    pmc.h: bump PMC_VERSION_MINOR
    
    Bump for the addition of PMC_OP_GETCAPS and the recently added Intel
    CPUs.
    
    Sponsored by:   The FreeBSD Foundation
---
 sys/sys/pmc.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/sys/pmc.h b/sys/sys/pmc.h
index 244a18e90c39..4c160c000dab 100644
--- a/sys/sys/pmc.h
+++ b/sys/sys/pmc.h
@@ -60,7 +60,7 @@
  * The patch version is incremented for every bug fix.
  */
 #define	PMC_VERSION_MAJOR	0x0A
-#define	PMC_VERSION_MINOR	0x00
+#define	PMC_VERSION_MINOR	0x01
 #define	PMC_VERSION_PATCH	0x0000
 
 #define	PMC_VERSION		(PMC_VERSION_MAJOR << 24 |		\