Bump backend version to 0.1.1 and validate plugin manifest sync
This commit is contained in:
@@ -24,7 +24,7 @@ def normalize_public_url(value: str) -> str:
|
||||
class Settings:
|
||||
app_env: str = os.getenv('APP_ENV', 'development').lower()
|
||||
app_name: str = os.getenv('LINKLOG_APP_NAME', 'LinkLog')
|
||||
version: str = os.getenv('LINKLOG_VERSION', '0.1.0')
|
||||
version: str = os.getenv('LINKLOG_VERSION', '0.1.1')
|
||||
database_url: str = os.getenv('LINKLOG_DATABASE_URL', f'sqlite:///{DB_PATH}')
|
||||
secret_key: str = os.getenv('LINKLOG_SECRET_KEY', 'dev-secret-key-change-me')
|
||||
data_encryption_key: str = os.getenv('LINKLOG_DATA_ENCRYPTION_KEY', '')
|
||||
|
||||
@@ -31,7 +31,7 @@ def login_headers(username='alice'):
|
||||
|
||||
|
||||
def test_login_returns_token():
|
||||
assert app.version == '0.1.0'
|
||||
assert app.version == '0.1.1'
|
||||
response = client.post('/api/auth/login', json={
|
||||
'email': 'alice@example.com',
|
||||
'password': 'secret123',
|
||||
|
||||
Reference in New Issue
Block a user