1.0.0 #253

Merged
edraft merged 262 commits from 1.0.0 into master 2023-03-27 09:30:50 +02:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 4d0e8898fe - Show all commits

View File

@ -1,6 +1,6 @@
{
"name": "kdb-web",
"version": "1.0.dev232",
"version": "1.0.0.rc1",
"scripts": {
"ng": "ng",
"update-version": "ts-node-esm update-version.ts",

View File

@ -3,7 +3,7 @@
"WebVersion": {
"Major": "1",
"Minor": "0",
"Micro": "dev232"
"Micro": "0.rc1"
},
"Themes": [
{

View File

@ -33,7 +33,7 @@ async function getVersion(): Promise<SoftwareVersion> {
}
if (versions.length > 2) {
micro = versions[2];
micro = versions.slice(2).toString().replace(',', '.');
}
} else if (branch.startsWith("#")) {
const fs = require("fs");