Skip to content

Commit 9088758

Browse files
committed
refactor!: rename python package to evdb
BREAKING CHANGE: Python imports and package metadata now use 'evdb' instead of 'evanovation_db' or 'evanovation-db'.
1 parent 7f4a1b2 commit 9088758

85 files changed

Lines changed: 115 additions & 115 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252
ASSET="evdb_linux_${{ matrix.arch }}.tar.gz"
5353
install -d -m 0755 release/bin release/units artifacts
5454
install -m 0755 dist/evdb release/bin/evdb
55-
install -m 0644 src/evanovation_db/units/*.service release/units/
56-
install -m 0644 src/evanovation_db/units/*.timer release/units/
55+
install -m 0644 src/evdb/units/*.service release/units/
56+
install -m 0644 src/evdb/units/*.timer release/units/
5757
(cd release && tar -czf "../artifacts/${ASSET}" bin/evdb units/*.service units/*.timer)
5858
tar -tzf "artifacts/${ASSET}"
5959
(cd artifacts && sha256sum "${ASSET}" > "${ASSET}.sha256")
@@ -177,12 +177,12 @@ jobs:
177177
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
178178
run: >-
179179
gh release create "${GITHUB_REF_NAME}" release/*
180-
--verify-tag --notes-file release-notes.md --title "evdb ${GITHUB_REF_NAME#v}"
180+
--verify-tag --notes-file release-notes.md --title "${GITHUB_REF_NAME}"
181181
- name: Publish GitHub release with automatic notes
182182
if: steps.notes.outcome != 'success'
183183
env:
184184
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
185185
run: |
186186
echo "::notice::Agent release notes unavailable; using GitHub automatic notes"
187187
gh release create "${GITHUB_REF_NAME}" release/* \
188-
--verify-tag --generate-notes --title "evdb ${GITHUB_REF_NAME#v}"
188+
--verify-tag --generate-notes --title "${GITHUB_REF_NAME}"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ integration-collect:
5050
$(PYTEST) --collect-only -q tests/integration
5151

5252
binary:
53-
$(PYINSTALLER) --clean --noconfirm --onefile --name evdb --paths src src/evanovation_db/__main__.py
53+
$(PYINSTALLER) --clean --noconfirm --onefile --name evdb --paths src src/evdb/__main__.py
5454

5555
require-db:
5656
@test -n "$(DB)" || (printf '%s\n' 'DB is required: DB=example-prod-01/postgres' >&2; exit 2)

openspec/changes/archive/2026-07-25-build-db-system/design.md

Lines changed: 4 additions & 4 deletions

openspec/changes/archive/2026-07-25-build-db-system/proposal.md

Lines changed: 1 addition & 1 deletion

openspec/changes/archive/2026-07-25-build-db-system/specs/deploy/spec.md

Lines changed: 2 additions & 2 deletions

openspec/changes/archive/2026-07-25-build-db-system/specs/jobs/spec.md

Lines changed: 2 additions & 2 deletions

openspec/changes/archive/2026-07-25-build-db-system/tasks.md

Lines changed: 1 addition & 1 deletion

openspec/changes/archive/2026-07-25-simplify-db-manager/design.md

Lines changed: 1 addition & 1 deletion

openspec/changes/archive/2026-07-25-simplify-db-manager/proposal.md

Lines changed: 1 addition & 1 deletion

openspec/changes/archive/2026-07-25-simplify-db-manager/specs/remote-management/spec.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)