Skip to content

Commit 03f016b

Browse files
chore(release): bump APP_VERSION to 0.4.0
Align settings, docs, and CI env with the v0.4.0 release tag. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 8265030 commit 03f016b

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.env.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ LISTEN_ADDR="0.0.0.0"
22
LISTEN_PORT=8000
33
APP_TITLE="Mercury API Docs"
44
APP_DESCRIPTION="This is the Swagger documentation of the Mercury API"
5-
APP_VERSION=1.0
5+
APP_VERSION=0.4.0
66
API_URL="http://localhost:8000"
77
API_VERSION="v1"
88
APP_ENV=local

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cat << 'ENVFILE' > .env
2323
LISTEN_ADDR=0.0.0.0
2424
LISTEN_PORT=8000
25-
APP_VERSION=1.0
25+
APP_VERSION=0.4.0
2626
APP_TITLE=Mercury
2727
APP_DESCRIPTION=Mercury API
2828
API_VERSION=v1

Agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Mercury is a small FastAPI backend boilerplate centered on JWT auth, PostgreSQL
66

77
This file is a working analysis for future agents so they can navigate the repository quickly and avoid common mistakes.
88

9-
**Current release line:** latest tag is `v0.3.1`; `main` is one commit ahead and ready for `v0.3.2`.
9+
**Current release line:** latest tag is `v0.4.0` (2026 upgrade stack + community standards).
1010

1111
## Stack Summary
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ This will create a `.env` file in your project locally.
8787
```shell
8888
APP_TITLE="Mercury API Docs"
8989
APP_DESCRIPTION="This is the Swagger documentation of the Mercury API"
90-
APP_VERSION=1.0
90+
APP_VERSION=0.4.0
9191
API_URL="http://localhost:8000"
9292
API_VERSION="v1"
9393
APP_ENV=local

src/constants/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Settings(BaseSettings):
1111

1212
LISTEN_ADDR: str
1313
LISTEN_PORT: int = 8000
14-
APP_VERSION: str = "1.0"
14+
APP_VERSION: str = "0.4.0"
1515
APP_TITLE: str
1616
APP_DESCRIPTION: str
1717
API_VERSION: str = "v1"

src/integration_tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# Set required env vars before importing main (which validates them)
1111
os.environ.setdefault("LISTEN_ADDR", "0.0.0.0") # nosec B104 - test env only, not production bind
1212
os.environ.setdefault("LISTEN_PORT", "8000")
13-
os.environ.setdefault("APP_VERSION", "1.0")
13+
os.environ.setdefault("APP_VERSION", "0.4.0")
1414
os.environ.setdefault("APP_TITLE", "Mercury")
1515
os.environ.setdefault("APP_DESCRIPTION", "Mercury API")
1616
os.environ.setdefault("API_VERSION", "v1")

0 commit comments

Comments
 (0)