Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ bump-version: ## Bump version number (usage: make bump-version VERSION=0.2.0)
@sed -i 's/^version = ".*"/version = "$(VERSION)"/' pyproject.toml
@# Update src/powermem/version.py
@sed -i 's/^__version__ = ".*"/__version__ = "$(VERSION)"/' src/powermem/version.py
@# Update src/powermem/core/telemetry.py (all occurrences)
@sed -i 's/"version": "0\.[0-9]\+\.[0-9]\+"/"version": "$(VERSION)"/g' src/powermem/core/telemetry.py
@# Update src/powermem/core/audit.py
@sed -i 's/"version": "0\.[0-9]\+\.[0-9]\+"/"version": "$(VERSION)"/g' src/powermem/core/audit.py
@# Update src/powermem/core/telemetry.py (all occurrences; match any x.y.z)
@sed -i 's/"version": "[0-9]\+\.[0-9]\+\.[0-9]\+"/"version": "$(VERSION)"/g' src/powermem/core/telemetry.py
@# Update src/powermem/core/audit.py (match any x.y.z)
@sed -i 's/"version": "[0-9]\+\.[0-9]\+\.[0-9]\+"/"version": "$(VERSION)"/g' src/powermem/core/audit.py
@echo "✓ Version updated to $(VERSION) in all files (excluding examples/)"
@echo ""
@echo "Updated files:"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "powermem"
version = "1.0.0"
version = "1.0.1"
description = "Intelligent Memory System - Persistent memory layer for LLM applications"
readme = "README.md"
license = {text = "Apache-2.0"}
Expand Down
2 changes: 1 addition & 1 deletion src/powermem/core/audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def log_event(
"user_id": user_id,
"agent_id": agent_id,
"details": details,
"version": "1.0.0",
"version": "1.0.1",
}

# Log to file
Expand Down
4 changes: 2 additions & 2 deletions src/powermem/core/telemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def capture_event(
"user_id": user_id,
"agent_id": agent_id,
"timestamp": get_current_datetime().isoformat(),
"version": "1.0.0",
"version": "1.0.1",
}

self.events.append(event)
Expand Down Expand Up @@ -182,7 +182,7 @@ def set_user_properties(self, user_id: str, properties: Dict[str, Any]) -> None:
"properties": properties,
"user_id": user_id,
"timestamp": get_current_datetime().isoformat(),
"version": "1.0.0",
"version": "1.0.1",
}

self.events.append(event)
Expand Down
2 changes: 1 addition & 1 deletion src/powermem/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Version information management
"""

__version__ = "1.0.0"
__version__ = "1.0.1"
__version_info__ = tuple(map(int, __version__.split(".")))

# Version history
Expand Down
Loading