Skip to content

Commit 9642310

Browse files
committed
chore(release): 2026.1.0
Bump version to 2026.1.0 (context/skill-book feature) and changelog. Raise Gradle daemon heap/metaspace so the IntelliJ Platform build stops OOM-ing.
1 parent a01a5c1 commit 9642310

2 files changed

Lines changed: 17 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@
44

55
## [Unreleased]
66

7+
## [2026.1.0] - 2026-06-04
8+
9+
### Added
10+
11+
- Context / skill-book: a bundled corpus exposed to MCP clients via `skill.list`,
12+
`skill.get`, `context.search`, and `context.get` (33 → 37 tools). Curated skills plus an
13+
auto-vendored IntelliJ Platform SDK reference (sliced from the official `llms.txt`) are
14+
packed into the plugin under `context-corpus/`, searchable with an in-process BM25 index
15+
and browsable as a tree of files linked by id.
16+
- New `:corpus-core` module (pure Kotlin) with the frontmatter/corpus/manifest/BM25 logic and
17+
build-time assembly (`assembleContextCorpus`) + `convertSdkDocs` / `refresh-sdk-docs.sh`.
18+
719
## [2026.0.4] - 2026-06-03
820

921
### Fixed

gradle.properties

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = com.github.xepozz.ide.introspector
2-
version = 2026.0.4
2+
version = 2026.1.0
33

44
pluginRepositoryUrl = https://github.com/xepozz/introspector-plugin
55

@@ -11,3 +11,7 @@ org.gradle.configuration-cache = true
1111

1212
# Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html
1313
org.gradle.caching = true
14+
15+
# The IntelliJ Platform build (instrumentCode, searchable options, plugin verifier hooks) is
16+
# memory-hungry; the default daemon heap OOMs and the daemon disappears. Give it room.
17+
org.gradle.jvmargs = -Xmx4g -XX:MaxMetaspaceSize=1g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

0 commit comments

Comments
 (0)