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 VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.11
2.0.12
4 changes: 2 additions & 2 deletions app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ android {
applicationId "com.dante.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 45
versionName "2.0.11"
versionCode 46
versionName "2.0.12"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
2 changes: 1 addition & 1 deletion app/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -4435,7 +4435,7 @@
},
"info": {
"title": "Dante",
"version": "2.0.11"
"version": "2.0.12"
},
"openapi": "3.1.0",
"paths": {
Expand Down
4 changes: 2 additions & 2 deletions app/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 app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dante-app",
"private": true,
"version": "2.0.11",
"version": "2.0.12",
"license": "SEE LICENSE IN ../LICENSE",
"author": "Wojciech Sułocki",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions app/scripts/verify-native-stack.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ requireMatch(rootGradle, /com\.android\.tools\.build:gradle:8\.13\.0/, 'Android
requireMatch(rootGradle, /com\.google\.gms:google-services:4\.4\.4/, 'Google Services must be 4.4.4');

const appGradle = await read('android/app/build.gradle');
requireMatch(appGradle, /versionCode\s+45\b/, 'versionCode must be 45');
requireMatch(appGradle, /versionName\s+"2\.0\.11"/, 'versionName must be 2.0.11');
requireMatch(appGradle, /versionCode\s+46\b/, 'versionCode must be 46');
requireMatch(appGradle, /versionName\s+"2\.0\.12"/, 'versionName must be 2.0.12');
requireMatch(appGradle, /JavaVersion\.VERSION_21/g, 'Android compilation must use Java 21');

const wrapper = await read('android/gradle/wrapper/gradle-wrapper.properties');
Expand Down
4 changes: 2 additions & 2 deletions electron/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 electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dante-desktop",
"version": "2.0.11",
"version": "2.0.12",
"description": "Dante desktop client with a local, locked-down proxy to the Dante server",
"desktopName": "Dante.desktop",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion scripts/check_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


ROOT = Path(__file__).resolve().parents[1]
EXPECTED_ANDROID_CODE = 45
EXPECTED_ANDROID_CODE = 46


def require_match(path: Path, pattern: str, description: str) -> str:
Expand Down
2 changes: 1 addition & 1 deletion server/dante/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

app = FastAPI(
title="Dante",
version="2.0.11",
version="2.0.12",
docs_url="/docs" if ENABLE_API_DOCS else None,
redoc_url="/redoc" if ENABLE_API_DOCS else None,
openapi_url="/openapi.json" if ENABLE_API_DOCS else None,
Expand Down