From d484c71f50e7b78e582dc8b5432c96057176c204 Mon Sep 17 00:00:00 2001 From: dece Date: Wed, 21 Aug 2024 07:58:21 +0200 Subject: [PATCH] bump to 1.0.0 --- italianswirls/server.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/italianswirls/server.py b/italianswirls/server.py index 4ff31a3..fb78add 100644 --- a/italianswirls/server.py +++ b/italianswirls/server.py @@ -35,7 +35,7 @@ from italianswirls.glue import ( get_lsp_locations, ) -LS = LanguageServer("italianswirls", "v0.0.1") +LS = LanguageServer("italianswirls", "v1.0.0") def get_jedi_script(document: Document) -> Script: diff --git a/pyproject.toml b/pyproject.toml index 7fbc5b3..e43ef67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [tool.poetry] name = "italianswirls" -version = "0.0.1" +version = "1.0.0" description = "Minimal Python language server based on Jedi" authors = ["dece "] readme = "README.md"