Skip to content

Commit

Permalink
Update app version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
zelytra committed Oct 18, 2024
1 parent da76a2c commit 151048e
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 6 deletions.
2 changes: 1 addition & 1 deletion backend/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ quarkus.hibernate-orm.database.generation=update

# Custom variables
proxy.check.api.key=${PROXY_CHECK_API_KEY: }
app.version=1.0.0,1.0.1
app.version=1.0.0,1.0.1,1.0.2

# CORS configuration
quarkus.http.cors=true
Expand Down
2 changes: 1 addition & 1 deletion webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "betterfleet",
"private": true,
"version": "1.0.1",
"version": "1.0.2",
"type": "module",
"scripts": {
"dev": "vite --host",
Expand Down
2 changes: 1 addition & 1 deletion webapp/src-tauri/Cargo.lock

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

2 changes: 1 addition & 1 deletion webapp/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "better_fleet"
version = "1.0.1"
version = "1.0.2"
description = "A better fleet creator"
authors = ["Zelytra", "dadodasyra"]
license = ""
Expand Down
2 changes: 1 addition & 1 deletion webapp/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "BetterFleet",
"version": "1.0.1"
"version": "1.0.2"
},
"tauri": {
"allowlist": {
Expand Down
7 changes: 7 additions & 0 deletions webapp/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,11 @@ export default defineConfig({
},
],
},
css: {
preprocessorOptions: {
scss: {
api: "modern-compiler", // or "modern"
},
},
},
})
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "betterfleet-website",
"private": true,
"version": "1.0.1",
"version": "1.0.2",
"type": "module",
"scripts": {
"dev": "vite --host --port 5174",
Expand Down
7 changes: 7 additions & 0 deletions website/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,11 @@ export default defineConfig({
},
],
},
css: {
preprocessorOptions: {
scss: {
api: "modern-compiler", // or "modern"
},
},
},
})

0 comments on commit 151048e

Please sign in to comment.