From 7c06b314d374e1d1f56c5c80c3fd08d289980196 Mon Sep 17 00:00:00 2001 From: Thomas Buckley-Houston Date: Mon, 17 Oct 2022 16:56:34 -0300 Subject: [PATCH] feat: Bump for lsprotocol BREAKING CHANGES release --- CHANGELOG.md | 5 +++++ pygls/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d503d08..2b9b5a58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,11 @@ and this project adheres to [Semantic Versioning][semver]. ### Fixed - Require Pydantic 1.10.2 when Python is 3.11 +## [1.0.0alpha] - 17/10/2022 +### Changed +🚧 Alpha Code (likely contains bugs) 🚧 +BREAKING CHANGE: Replaced `pydantic` with [`lsprotocol`](https://github.com/microsoft/lsprotocol) + ## [0.12.2] - 26/09/2022 ### Fixed - Relaxed the Python version upper bound to `<4` diff --git a/pygls/__init__.py b/pygls/__init__.py index d81d8e46..74bb22ad 100644 --- a/pygls/__init__.py +++ b/pygls/__init__.py @@ -19,7 +19,7 @@ import os import sys -__version__ = "0.12.4" +__version__ = "1.0.0alpha2" IS_WIN = os.name == 'nt' IS_PYODIDE = 'pyodide' in sys.modules