Skip to content

Commit

Permalink
release: v1.0.0-beta.18
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiankachlock committed Apr 19, 2024
1 parent 7466ae7 commit fe42f03
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion 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 backend/Zwoo.Backend.LocalServer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
options.SerializerOptions.TypeInfoResolverChain.Insert(0, ApiJsonSerializerContext.Default);
});

const string VERSION = "1.0.0-beta.17";
const string VERSION = "1.0.0-beta.18";
builder.AddZwooLogging(false);
var conf = builder.AddZwooConfiguration(args, new ZwooAppConfiguration()
{
Expand Down
2 changes: 1 addition & 1 deletion backend/Zwoo.Backend/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();

const string VERSION = "1.0.0-beta.17";
const string VERSION = "1.0.0-beta.18";
builder.AddZwooLogging(false);
var conf = builder.AddZwooConfiguration(args, new ZwooAppConfiguration()
{
Expand Down
2 changes: 1 addition & 1 deletion backend/Zwoo.Dashboard/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
builder.WebHost.UseStaticWebAssets();
builder.Services.AddScoped<DialogService>();

const string VERSION = "1.0.0-beta.17";
const string VERSION = "1.0.0-beta.18";
builder.AddZwooLogging(false);
var zwooConf = builder.AddZwooConfiguration(args, new() { });
var conf = builder.AddZiadConfiguration(args, new ZiadAppConfiguration()
Expand Down
4 changes: 2 additions & 2 deletions frontend/env/.env
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
VUE_APP_I18N_LOCALE=en
VUE_APP_I18N_FALLBACK_LOCALE=en
VUE_APP_BETA=true
VUE_APP_VERSION=1.0.0-beta.17
VUE_APP_VERSION_HASH=59669845
VUE_APP_VERSION=1.0.0-beta.18
VUE_APP_VERSION_HASH=7466ae73

VUE_APP_DEFAULT_ENV=online
VUE_APP_LOCK_ENV=false
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "1.0.0-beta.17",
"version": "1.0.0-beta.18",
"private": true,
"scripts": {
"serve": "vite --mode preview",
Expand Down
2 changes: 1 addition & 1 deletion frontend/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 frontend/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zwoo"
version = "1.0.0-beta.17"
version = "1.0.0-beta.18"
description = ""
authors = ["IGD 2.0 UG (haftungsbeschränkt)"]
license = ""
Expand Down
2 changes: 1 addition & 1 deletion frontend/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "zwoo",
"version": "0.1.0"
"version": "1.0.0-beta.18"
},
"tauri": {
"allowlist": {
Expand Down

0 comments on commit fe42f03

Please sign in to comment.