Skip to content

Commit

Permalink
Merge branches 'main' and 'main' of https://github.com/cahaseler/PROMISE
Browse files Browse the repository at this point in the history
  • Loading branch information
cahaseler committed May 28, 2024
2 parents 4ed925b + 4b8f671 commit 7a1b0f7
Show file tree
Hide file tree
Showing 13 changed files with 210 additions and 4,389 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/on_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
persist-credentials: false

- name: Install node 18
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
Expand All @@ -45,7 +45,7 @@ jobs:
yarn build-static
- name: Swap to node 14 for semantic release compatibility
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 14

Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
persist-credentials: false

- name: Install node 18
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
Expand All @@ -92,7 +92,7 @@ jobs:
yarn build-linux
- name: login to dockerhub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "empact",
"version": "1.0.3",
"version": "1.0.4",
"license": "CC-BY-4.0",
"description": "Environment and Maturity Program Assessment and Control Tool",
"keywords": [
Expand Down Expand Up @@ -33,5 +33,5 @@
"prompt-confirm": "2.0.4"
},
"dependencies": {},
"packageManager": "[email protected].21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
"packageManager": "[email protected].22"
}
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

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

8 changes: 4 additions & 4 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ rust-version = "1.60"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "1.5.2", features = [] }
tauri-build = { version = "=1.5.2", features = [] }

[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.6.5", features = [] }
serde_json = "=1.0.117"
serde = { version = "=1.0.202", features = ["derive"] }
tauri = { version = "=1.6.7", features = [] }

[features]
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "EMPACT",
"version": "1.0.3"
"version": "1.0.4"
},
"tauri": {
"allowlist": {
Expand Down
2 changes: 1 addition & 1 deletion web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.18.2 AS deps
FROM node:20.13.1 AS deps

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion web/app/(frontend)/components/version-indicator.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export function VersionIndicator() {
let version = { version: "1.0.3" };
let version = { version: "1.0.4" };
return <div>{"v" + version.version}</div>;
}
2 changes: 1 addition & 1 deletion web/app/api/version/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ import { NextResponse } from "next/server";
* NOTE: This file is automatically updated by a script. You don't need to increment this version manually.
*/
export async function GET(): Promise<NextResponse> {
return NextResponse.json({ version: "1.0.3" });
return NextResponse.json({ version: "1.0.4" });
}
20 changes: 10 additions & 10 deletions web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "empact_web",
"version": "1.0.3",
"version": "1.0.4",
"license": "CC-BY-4.0",
"description": "Environment and Maturity Program Assessment and Control Tool",
"keywords": [
Expand All @@ -23,18 +23,18 @@
"lint": "next lint"
},
"dependencies": {
"react": "^18",
"react-dom": "^18",
"react": "18.3.1",
"react-dom": "18.3.1",
"next": "14.2.3"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"typescript": "5.4.5",
"@types/node": "20.12.12",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"postcss": "8.4.38",
"tailwindcss": "3.4.3",
"eslint": "9.3.0",
"eslint-config-next": "14.2.3"
},
"pkg": {
Expand Down
Loading

0 comments on commit 7a1b0f7

Please sign in to comment.