Skip to content

Commit ae1666f

Browse files
committed
chore: Release 0.3.0
1 parent f6215c6 commit ae1666f

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ jobs:
5858
with:
5959
name: linux-deb-and-appimage
6060
path: |
61-
src-tauri/target/release/bundle/deb/citadel_0.2.0_amd64.deb
62-
src-tauri/target/release/bundle/appimage/citadel_0.2.0_amd64.AppImage
61+
src-tauri/target/release/bundle/deb/citadel_0.3.0_amd64.deb
62+
src-tauri/target/release/bundle/appimage/citadel_0.3.0_amd64.AppImage
6363
6464
- name: (macOS only) Upload build artifacts
6565
if: matrix.platform == 'macos-12'
@@ -68,4 +68,4 @@ jobs:
6868
name: macos-app-and-dmg
6969
path: |
7070
src-tauri/target/release/bundle/macos/Citadel.app
71-
src-tauri/target/release/bundle/dmg/Citadel_0.2.0_x64.dmg
71+
src-tauri/target/release/bundle/dmg/Citadel_0.3.0_x64.dmg

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ FROM scratch AS artifacts
1818

1919
ARG WORKDIR
2020
COPY --from=build \
21-
"${WORKDIR}/src-tauri/target/release/bundle/appimage/citadel_0.2.0_amd64.AppImage" \
21+
"${WORKDIR}/src-tauri/target/release/bundle/appimage/citadel_0.3.0_amd64.AppImage" \
2222
.
2323
COPY --from=build \
24-
"${WORKDIR}/src-tauri/target/release/bundle/deb/citadel_0.2.0_amd64.deb" \
24+
"${WORKDIR}/src-tauri/target/release/bundle/deb/citadel_0.3.0_amd64.deb" \
2525
.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "citadel",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"type": "module",
55
"scripts": {
66
"build": "bun run build:app",

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 = "citadel-rs"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Backend for Citadel, embedded into the Tauri app or run stand-alone."
55
authors = ["Phil Denhoff"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "Citadel",
11-
"version": "0.2.0"
11+
"version": "0.3.0"
1212
},
1313
"tauri": {
1414
"allowlist": {

0 commit comments

Comments
 (0)