diff --git a/lib/lsp-devtools/.bumpversion.cfg b/lib/lsp-devtools/.bumpversion.cfg index 7f366ca..c067de5 100644 --- a/lib/lsp-devtools/.bumpversion.cfg +++ b/lib/lsp-devtools/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(.dev(?P\d+))? diff --git a/lib/lsp-devtools/CHANGES.rst b/lib/lsp-devtools/CHANGES.rst index 1561cc5..1eda776 100644 --- a/lib/lsp-devtools/CHANGES.rst +++ b/lib/lsp-devtools/CHANGES.rst @@ -1,3 +1,12 @@ +v0.1.1 - 2023-01-14 +------------------- + +Fixes +^^^^^ + +- Fix PyPi packaging (`#33 `_) + + v0.1.0 - 2023-01-10 ------------------- diff --git a/lib/lsp-devtools/changes/33.fix.rst b/lib/lsp-devtools/changes/33.fix.rst deleted file mode 100644 index fa2cb3d..0000000 --- a/lib/lsp-devtools/changes/33.fix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix PyPi packaging diff --git a/lib/lsp-devtools/lsp_devtools/__init__.py b/lib/lsp-devtools/lsp_devtools/__init__.py index 3dc1f76..485f44a 100644 --- a/lib/lsp-devtools/lsp_devtools/__init__.py +++ b/lib/lsp-devtools/lsp_devtools/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/lib/lsp-devtools/pyproject.toml b/lib/lsp-devtools/pyproject.toml index 56b066d..f63f4d8 100644 --- a/lib/lsp-devtools/pyproject.toml +++ b/lib/lsp-devtools/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "lsp-devtools" -version = "0.1.0" +version = "0.1.1" description = "Developer tooling for language servers" readme = "README.md" requires-python = ">=3.7"