Skip to content

Commit 5a8db16

Browse files
kapillamba4claude
andcommitted
Fix import-ordering lint error and bump version to 1.0.33
PR #11 left an unsorted import block in db.py (`from datetime import datetime` placed among the plain `import` statements), which fails `ruff check` (I001) and broke CI on main. Move it into the sorted from-import group. Bump version 1.0.32 -> 1.0.33 in pyproject.toml, server.json (x2), and uv.lock. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent a9a4be0 commit 5a8db16

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

code_memory/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
import logging
1515
import os
1616
import sqlite3
17-
from datetime import datetime
1817
import sys
1918
from contextlib import contextmanager
19+
from datetime import datetime
2020
from functools import lru_cache
2121
from typing import TYPE_CHECKING
2222

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "code-memory"
7-
version = "1.0.32"
7+
version = "1.0.33"
88
description = "A deterministic, high-precision code intelligence MCP server"
99
readme = "README.md"
1010
license = "MIT"

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"url": "https://github.com/kapillamba4/code-memory",
77
"source": "github"
88
},
9-
"version": "1.0.32",
9+
"version": "1.0.33",
1010
"packages": [
1111
{
1212
"registryType": "pypi",
1313
"identifier": "code-memory",
14-
"version": "1.0.32",
14+
"version": "1.0.33",
1515
"transport": {
1616
"type": "stdio"
1717
},

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)