From 86de5ddef1f30da0688d2b9e08e528662a70f870 Mon Sep 17 00:00:00 2001 From: Daniel Banck Date: Tue, 18 Apr 2023 14:13:06 +0200 Subject: [PATCH 1/3] Bump version to 0.31.0 --- version/VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/VERSION b/version/VERSION index 161da02ff..26bea73e8 100644 --- a/version/VERSION +++ b/version/VERSION @@ -1 +1 @@ -0.31.0-dev +0.31.0 From 81ae04fe0d3d669ef928e3d9f842a425d08a25da Mon Sep 17 00:00:00 2001 From: Daniel Banck Date: Tue, 18 Apr 2023 14:14:10 +0200 Subject: [PATCH 2/3] Bump hcl-lang to a638ff --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index a86add403..021490bb6 100644 --- a/go.mod +++ b/go.mod @@ -13,7 +13,7 @@ require ( github.com/hashicorp/go-uuid v1.0.3 github.com/hashicorp/go-version v1.6.0 github.com/hashicorp/hc-install v0.5.1 - github.com/hashicorp/hcl-lang v0.0.0-20230406172145-78579711860f + github.com/hashicorp/hcl-lang v0.0.0-20230418121158-a638ff79984b github.com/hashicorp/hcl/v2 v2.16.2 github.com/hashicorp/terraform-exec v0.18.1 github.com/hashicorp/terraform-json v0.16.0 diff --git a/go.sum b/go.sum index 89ed8fcf7..51acdba0b 100644 --- a/go.sum +++ b/go.sum @@ -347,8 +347,8 @@ github.com/hashicorp/hc-install v0.5.1 h1:eCqToNCob7m2R8kM8Gr7XcVmcRSz9ppCFSVZbM github.com/hashicorp/hc-install v0.5.1/go.mod h1:iDPCnzKo+SzToOh25R8OWpLdhhy7yBfJX3PmVWiYhrM= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/hashicorp/hcl-lang v0.0.0-20230406172145-78579711860f h1:MTbd7Mi+g1X/9f9j7p4GqFZFJvFtiwPxPdIqc3xnLrQ= -github.com/hashicorp/hcl-lang v0.0.0-20230406172145-78579711860f/go.mod h1:SalMwbKCDSR7kF34FdPAikCsQjPVgYvwyiROrMWbyEw= +github.com/hashicorp/hcl-lang v0.0.0-20230418121158-a638ff79984b h1:uN5QGt6y2/j0puUZ48A5IN3CQpQkBJzbgpXcC2Mq4mk= +github.com/hashicorp/hcl-lang v0.0.0-20230418121158-a638ff79984b/go.mod h1:Xx8PjRZCrZYwWX9xloL/r0a8bOof5p3JT1JWI3i7EpE= github.com/hashicorp/hcl/v2 v2.16.2 h1:mpkHZh/Tv+xet3sy3F9Ld4FyI2tUpWe9x3XtPx9f1a0= github.com/hashicorp/hcl/v2 v2.16.2/go.mod h1:JRmR89jycNkrrqnMmvPDMd56n1rQJ2Q6KocSLCMCXng= github.com/hashicorp/terraform-exec v0.18.1 h1:LAbfDvNQU1l0NOQlTuudjczVhHj061fNX5H8XZxHlH4= From 905b88ca88dc857bb3c117deb120b532e1f66a51 Mon Sep 17 00:00:00 2001 From: Daniel Banck Date: Tue, 18 Apr 2023 14:19:37 +0200 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc9cf1fcf..75af5f284 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +## 0.31.0 (18 April 2023) + +ENHANCEMENTS: + +* Add support for nested expressions and functions ([#1237](https://github.com/hashicorp/terraform-ls/pull/1237), [hcl-lang#232](https://github.com/hashicorp/hcl-lang/pull/232), [hcl-lang#203](https://github.com/hashicorp/hcl-lang/pull/203), [hcl-lang#199](https://github.com/hashicorp/hcl-lang/pull/199), [hcl-lang#186](https://github.com/hashicorp/hcl-lang/pull/186), [hcl-lang#185](https://github.com/hashicorp/hcl-lang/pull/185), [hcl-lang#184](https://github.com/hashicorp/hcl-lang/pull/184)) +* Add support for function signature help in ([#1077](https://github.com/hashicorp/terraform-ls/pull/1077)) +* Fix remote backend tracking in ([#1218](https://github.com/hashicorp/terraform-ls/pull/1218)) +* lsp: Recognise new token type for function names in ([#1233](https://github.com/hashicorp/terraform-ls/pull/1233)) + +INTERNAL: + +* Add instructions for Kate editor ([#1200](https://github.com/hashicorp/terraform-ls/pull/1200)) +* Add TFC usage detection ([#1208](https://github.com/hashicorp/terraform-ls/pull/1208)) + +BUG FIXES: + +* Reflect `LiteralValue`, `Description` & `IsDeprecated` in completion/hover ([hcl-lang#253](https://github.com/hashicorp/hcl-lang/pull/253)) +* Fix crash when completing `LiteralType{Type: cty.Tuple}` ([hcl-lang#255](https://github.com/hashicorp/hcl-lang/pull/255)) +* Display `Tuple` hover data on invalid element ([hcl-lang#254](https://github.com/hashicorp/hcl-lang/pull/254)) +* Fix collection of implied declared targets of complex types ([hcl-lang#259](https://github.com/hashicorp/hcl-lang/pull/259)) +* Collect targets w/ interpolation for `Any` correctly ([hcl-lang#257](https://github.com/hashicorp/hcl-lang/pull/257)) + ## 0.31.0-beta (6 April 2023) ENHANCEMENTS: