Skip to content

Commit

Permalink
chore: release 0.2.0 (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
SirYwell authored Aug 11, 2024
1 parent 4a009bf commit 5b8aae7
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

## [Unreleased]

### Added

- Support a wide range of `MemoryLayout` related methods
- Contribute type information as documentation on variables
- Inspections for `PaddingLayout` and alignment issues
- Support for methods with `PathElement` parameters
- Contribute completions for methods with `PathElement` parameters

## [0.1.0] - 2024-06-25

### Added
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# HandleHints

![Build](https://github.com/SirYwell/HandleHints/workflows/Build/badge.svg)
[![Version](https://img.shields.io/jetbrains/plugin/v/24637.svg)](https://plugins.jetbrains.com/plugin/PLUGIN_ID)
[![Downloads](https://img.shields.io/jetbrains/plugin/d/24637.svg)](https://plugins.jetbrains.com/plugin/PLUGIN_ID)
[![Version](https://img.shields.io/jetbrains/plugin/v/24637.svg)](https://plugins.jetbrains.com/plugin/24637)
[![Downloads](https://img.shields.io/jetbrains/plugin/d/24637.svg)](https://plugins.jetbrains.com/plugin/24637)
<!--
## Template ToDo list
- [x] Create a new [IntelliJ Platform Plugin Template][template] project.
Expand All @@ -16,7 +16,9 @@
-->

<!-- Plugin description -->
This IntelliJ plugin adds inspections and tools to make working with Java MethodHandles easier.
This IntelliJ plugin helps when working with `MethodHandle`s, `VarHandle`s,
and the [Foreign Function & Memory API](https://openjdk.org/jeps/454) by contributing type hints,
inspections, and enhanced auto completions.

### Features

Expand All @@ -25,9 +27,13 @@ This IntelliJ plugin adds inspections and tools to make working with Java Method
- Support for methods from the `MethodHandles.Lookup` class
- Support for methods from the `MethodType` class
- Support for methods from the `MethodHandle` class
- Support for methods from `MemoryLayout` classes (type tracking for memory layouts)
- Support for methods from the `PathElement` class
- Precise type tracking for parameters and return types separately
- Inspections for supported creation/transformation/combination methods
- Inspections for `invoke` and `invokeExact` arguments and return type checks
- Inspections for invalid layout paths
- Inspections for misaligned struct layouts, with quick fixes for padding/alignment adjustment
- Inlay type hints
<!-- Plugin description end -->

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = de.sirywell.handlehints
pluginName = HandleHints
pluginRepositoryUrl = https://github.com/SirYwell/HandleHints
# SemVer format -> https://semver.org
pluginVersion = 0.1.0
pluginVersion = 0.2.0

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 233
Expand Down

0 comments on commit 5b8aae7

Please sign in to comment.