Skip to content

Commit fb4cca7

Browse files
committed
Release 3.4.0-rc0
1 parent 6c4ee7a commit fb4cca7

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -485,27 +485,27 @@ workflows:
485485
- deploy-linux-arm64-release:
486486
filters:
487487
branches:
488-
only: release
488+
only: master
489489
- deploy-linux-x86_64-release:
490490
filters:
491491
branches:
492-
only: release
492+
only: master
493493
- deploy-mac-arm64-release:
494494
filters:
495495
branches:
496-
only: release
496+
only: master
497497
- deploy-mac-x86_64-release:
498498
filters:
499499
branches:
500-
only: release
500+
only: master
501501
- deploy-windows-x86_64-release:
502502
filters:
503503
branches:
504-
only: release
504+
only: master
505505
- deploy-github:
506506
filters:
507507
branches:
508-
only: release
508+
only: master
509509
requires:
510510
- deploy-linux-arm64-release
511511
- deploy-linux-x86_64-release

BUILD

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ exports_files(["VERSION"])
6767

6868
genrule(
6969
name = "native-artifact-mac-x86_64-dmg",
70-
outs = ["typedb-studio_3.4.0-e5a9c7d3f1b8426e8d3c4f7a7b9a1e34c1f5d27b_amd64.dmg"], # replace with your actual output, e.g., .exe, .AppImage
70+
outs = ["typedb-studio_3.4.0-rc0_amd64.dmg"], # replace with your actual output, e.g., .exe, .AppImage
7171
cmd = """
7272
cp src-tauri/target/release/bundle/dmg/*.dmg "$(OUTS)"
7373
""",
@@ -77,7 +77,7 @@ genrule(
7777

7878
genrule(
7979
name = "native-artifact-mac-arm64-dmg",
80-
outs = ["typedb-studio_3.4.0-e5a9c7d3f1b8426e8d3c4f7a7b9a1e34c1f5d27b_aarch64.dmg"], # replace with your actual output, e.g., .exe, .AppImage
80+
outs = ["typedb-studio_3.4.0-rc0_aarch64.dmg"], # replace with your actual output, e.g., .exe, .AppImage
8181
cmd = """
8282
cp src-tauri/target/release/bundle/dmg/*.dmg "$(OUTS)"
8383
""",
@@ -87,7 +87,7 @@ genrule(
8787

8888
genrule(
8989
name = "native-artifact-linux-arm64-deb",
90-
outs = ["typedb-studio_3.4.0-e5a9c7d3f1b8426e8d3c4f7a7b9a1e34c1f5d27b_arm64.deb"], # replace with your actual output, e.g., .exe, .AppImage
90+
outs = ["typedb-studio_3.4.0-rc0_arm64.deb"], # replace with your actual output, e.g., .exe, .AppImage
9191
cmd = """
9292
cp src-tauri/target/release/bundle/deb/*.deb "$(OUTS)"
9393
""",
@@ -97,7 +97,7 @@ genrule(
9797

9898
genrule(
9999
name = "native-artifact-linux-x86_64-deb",
100-
outs = ["typedb-studio_3.4.0-e5a9c7d3f1b8426e8d3c4f7a7b9a1e34c1f5d27b_amd64.deb"], # replace with your actual output, e.g., .exe, .AppImage
100+
outs = ["typedb-studio_3.4.0-rc0_amd64.deb"], # replace with your actual output, e.g., .exe, .AppImage
101101
cmd = """
102102
cp src-tauri/target/release/bundle/deb/*.deb "$(OUTS)"
103103
""",
@@ -107,7 +107,7 @@ genrule(
107107

108108
genrule(
109109
name = "native-artifact-windows-x86_64-msi",
110-
outs = ["typedb-studio_3.4.0-e5a9c7d3f1b8426e8d3c4f7a7b9a1e34c1f5d27b_amd64.msi"], # replace with your actual output, e.g., .exe, .AppImage
110+
outs = ["typedb-studio_3.4.0-rc0_amd64.msi"], # replace with your actual output, e.g., .exe, .AppImage
111111
cmd = """
112112
cp src-tauri/target/release/bundle/msi/*.msi "$(OUTS)"
113113
""",

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.0-e5a9c7d3f1b8426e8d3c4f7a7b9a1e34c1f5d27b
1+
3.4.0-rc0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typedb-studio",
3-
"version": "3.4.0-e5a9c7d3f1b8426e8d3c4f7a7b9a1e34c1f5d27b",
3+
"version": "3.4.0-rc0",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typedb-studio"
3-
version = "3.4.0-e5a9c7d3f1b8426e8d3c4f7a7b9a1e34c1f5d27b"
3+
version = "3.4.0-rc0"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "typedb-studio",
4-
"version": "3.4.0-e5a9c7d3f1b8426e8d3c4f7a7b9a1e34c1f5d27b",
4+
"version": "3.4.0-rc0",
55
"identifier": "com.typedb.studio",
66
"build": {
77
"beforeDevCommand": "pnpm start",
@@ -33,7 +33,7 @@
3333
],
3434
"windows": {
3535
"wix": {
36-
"version": "0.0.1"
36+
"version": "0.0.340"
3737
}
3838
},
3939
"macOS": {

0 commit comments

Comments
 (0)