From 80422e3398eac5db7402bec09f734ca707d46f14 Mon Sep 17 00:00:00 2001 From: Ritchie Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Thu, 22 May 2025 01:41:37 +0200 Subject: [PATCH] Mino fix in pyproject.toml --- poetry.lock | 6 +++--- pyproject.toml | 4 ++-- src/searchcode/__init__.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/poetry.lock b/poetry.lock index 99cc23b..a84d946 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 2.1.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.1.3 and should not be changed by hand. [[package]] name = "certifi" @@ -149,7 +149,7 @@ description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" groups = ["dev"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, @@ -411,7 +411,7 @@ description = "A lil' TOML parser" optional = false python-versions = ">=3.8" groups = ["dev"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249"}, {file = "tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6"}, diff --git a/pyproject.toml b/pyproject.toml index 22f4c8b..3cc43fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "searchcode" -version = "0.6.1" +version = "0.6.2" description = "Simple, comprehensive code search." authors = ["Ritchie Mwewa "] license = "GPLv3+" readme = "README.md" homepage = "https://searchcode.com" -repository = "https://github.com/rly0nheart/searchcode-sdk" +repository = "https://github.com/rly0nheart/searchcode-python" classifiers = [ "Development Status :: 5 - Production/Stable", "Programming Language :: Python :: 3", diff --git a/src/searchcode/__init__.py b/src/searchcode/__init__.py index 811d38c..f291e29 100644 --- a/src/searchcode/__init__.py +++ b/src/searchcode/__init__.py @@ -20,7 +20,7 @@ from .api import Searchcode __pkg__ = "searchcode" -__version__ = "0.6.1" +__version__ = "0.6.2" __author__ = "Ritchie Mwewa" __all__ = ["Searchcode"]