Skip to content

Commit

Permalink
chore(release): 1.1.3 [skip ci]
Browse files Browse the repository at this point in the history
## [1.1.3](v1.1.2...v1.1.3) (2024-05-31)
  • Loading branch information
semantic-release-bot committed May 31, 2024
1 parent 79ab95c commit ed7aba9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "empact",
"version": "1.1.2",
"version": "1.1.3",
"license": "CC-BY-4.0",
"description": "Environment and Maturity Program Assessment and Control Tool",
"keywords": [
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.1.2"
"version": "1.1.3"
},
"tauri": {
"allowlist": {
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.1.2" };
let version = { version: "1.1.3" };
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.1.2" });
return NextResponse.json({ version: "1.1.3" });
}
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "empact_web",
"version": "1.1.2",
"version": "1.1.3",
"license": "CC-BY-4.0",
"description": "Environment and Maturity Program Assessment and Control Tool",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion web_static/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "empact_local",
"version": "1.1.2",
"version": "1.1.3",
"license": "CC-BY-4.0",
"description": "Environment and Maturity Program Assessment and Control Tool",
"keywords": [
Expand Down

0 comments on commit ed7aba9

Please sign in to comment.