Skip to content

Commit 2710ad2

Browse files
authored
Merge pull request #70 from kun-codes/chore/release-v0.1.0-alpha
chore(version): bump version to 0.1.0-alpha
2 parents 3447bdc + 7e15864 commit 2710ad2

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

backend/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Application Settings
22
# APP_NAME=Caddy GUI
33
# below line is mentioned in tbump.toml, update its regex there when format is changed here
4-
# APP_VERSION=0.1.0
4+
# APP_VERSION=0.1.0-alpha
55
# PRODUCTION=False
66

77
# Database Settings

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "Ferron-Proxy-Manager"
3-
version = "0.1.0"
3+
version = "0.1.0-alpha"
44
description = "A Web UI for Ferron web server"
55
requires-python = "==3.13.*"
66
dependencies = [

backend/src/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class Settings(BaseSettings):
55
app_name: str = "Ferron Proxy Manager"
66
# below line is used in tbump.toml, update its regex there when updating changing structure of line here
7-
app_version: str = "0.1.0"
7+
app_version: str = "0.1.0-alpha"
88
production: bool = True # in case user misses to specify this, a value of True is safer for production
99

1010
database_url: str

backend/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "frontend",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "0.1.0-alpha",
55
"type": "module",
66
"scripts": {
77
"dev": "vite dev",

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/kun-codes/Ferron-Proxy-Manager/"
22

33
[version]
4-
current = "0.1.0"
4+
current = "0.1.0-alpha"
55

66
# from: https://codeberg.org/your-tools/tbump/src/commit/4c5fee99a8287d3a6a88f915c121f36e78662784#setting-default-values-for-version-fields
77
regex = '''

0 commit comments

Comments
 (0)