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
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ INTEGRATION_ENCRYPTION_KEY=
# Image tag pulled from ghcr.io for the api + web services. Pin to a release
# tag for reproducible upgrades; using `latest` can pull breaking changes on
# the next `docker compose pull`. Switch deliberately, never silently.
TESTJAM_VERSION=v1.0.0
TESTJAM_VERSION=v1.0.1

# Database — only override if you need non-default user/db name.
POSTGRES_USER=testjam
Expand Down
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "testjam-api"
version = "1.0.0"
version = "1.0.1"
description = "Testjam test management platform — backend API"
requires-python = ">=3.14"
dependencies = [
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ services:
retries: 5

api:
# Pin TESTJAM_VERSION in .env (default v1.0.0); avoid `latest` in prod —
# Pin TESTJAM_VERSION in .env (default v1.0.1); avoid `latest` in prod —
# a `docker compose pull` could drag in a breaking release without warning.
image: ghcr.io/jamofer/testjam-api:${TESTJAM_VERSION:-v1.0.0}
image: ghcr.io/jamofer/testjam-api:${TESTJAM_VERSION:-v1.0.1}
environment:
DATABASE_URL: postgresql://${POSTGRES_USER:-testjam}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB:-testjam}
SECRET_KEY: ${SECRET_KEY}
Expand All @@ -48,7 +48,7 @@ services:
retries: 6

web:
image: ghcr.io/jamofer/testjam-web:${TESTJAM_VERSION:-v1.0.0}
image: ghcr.io/jamofer/testjam-web:${TESTJAM_VERSION:-v1.0.1}
ports:
- "${APP_PORT:-8080}:80"
depends_on:
Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "testjam-frontend",
"private": true,
"version": "1.0.0",
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion testjam-client/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "testjam-client"
version = "1.0.0"
version = "1.0.1"
description = "Python SDK and Robot Framework listener for the Testjam test management server."
requires-python = ">=3.14"
dependencies = [
Expand Down
Loading