From f0a9f284fc6bc48ebc5abc12343ca6d345ed06de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 3 Jul 2025 03:22:12 +0000 Subject: [PATCH] chore(main): release 0.11.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ mix.exs | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7d9b009..78e7f27 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.0" + ".": "0.11.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fa4e36c..ba01d28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # CHANGELOG +## [0.11.0](https://github.com/elixir-tools/gen_lsp/compare/v0.10.0...v0.11.0) (2025-07-03) + + +### ⚠ BREAKING CHANGES + +* async requests and request cancelling ([#67](https://github.com/elixir-tools/gen_lsp/issues/67)) +* change schematic functions to schema ([#61](https://github.com/elixir-tools/gen_lsp/issues/61)) + +### Features + +* async requests and request cancelling ([#67](https://github.com/elixir-tools/gen_lsp/issues/67)) ([8096c5d](https://github.com/elixir-tools/gen_lsp/commit/8096c5db9d3df7f602fb56bcceb491cd0a25446a)) +* opaque assigns structure ([#66](https://github.com/elixir-tools/gen_lsp/issues/66)) ([eadcac8](https://github.com/elixir-tools/gen_lsp/commit/eadcac8daf8db8e1433de5b3430b949d8d468f24)) + + +### Bug Fixes + +* change schematic functions to schema ([#61](https://github.com/elixir-tools/gen_lsp/issues/61)) ([a9fa987](https://github.com/elixir-tools/gen_lsp/commit/a9fa98722eba2df4295c7bc0835508c0326f85d1)) +* spec for GenLSP.Test.server/2 ([374b05b](https://github.com/elixir-tools/gen_lsp/commit/374b05b4d8391e07d98d829902f30cec1eb8000b)) + ## [0.10.0](https://github.com/elixir-tools/gen_lsp/compare/v0.9.0...v0.10.0) (2024-05-31) diff --git a/mix.exs b/mix.exs index fca8a31..fc80aa2 100644 --- a/mix.exs +++ b/mix.exs @@ -8,7 +8,7 @@ defmodule GenLSP.MixProject do app: :gen_lsp, description: "Library for creating language servers", source_url: @source_url, - version: "0.10.0", + version: "0.11.0", elixir: "~> 1.11", start_permanent: Mix.env() == :prod, deps: deps(),