Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 0.2.0 #120

Merged
merged 2 commits into from
Aug 11, 2024
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
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
Loading