diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c6faf6d..4373a79e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.5.0] + +### Added +- Add support for CALL subqueries (#20) + +### Removed +- Remove unneeded hardcoded functions (#55) + ## [0.4.2] ### Fixed diff --git a/gradle.properties b/gradle.properties index 63e07a66..2b88cda5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,10 +1,10 @@ -version=0.4.2 +version=0.5.0 # Intellij SDK intellijSdkVersion=2022.3 # Versions -versionGradleIntelliJ=1.11.0 +versionGradleIntelliJ=1.12.0 versionGradleChangelog=2.0.0 versionGradleGrammarKit=2021.2.2 versionJunit=4.12 diff --git a/platform/src/main/resources/graphdb/messages/GraphBundle.properties b/platform/src/main/resources/graphdb/messages/GraphBundle.properties index f6dc638c..675e17bb 100644 --- a/platform/src/main/resources/graphdb/messages/GraphBundle.properties +++ b/platform/src/main/resources/graphdb/messages/GraphBundle.properties @@ -1,3 +1,3 @@ updater.title=Graph Database plugin updated to v{0} updater.notification=\ - Remove unnecessary aggregation on relationship types, which might fail metadata retrieval. + Add support for CALL subqueries. Use function metadata provided by database, instead of hardcoded.