diff --git a/.gitignore b/.gitignore index 16365f0..6e8c761 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ node_modules !.env.example vite.config.js.timestamp-* vite.config.ts.timestamp-* +release.md diff --git a/README.md b/README.md index 1e06ec9..f2cd8c5 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # Typst Desktop -[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/sirblobby/typst-desktop) +[![Version](https://img.shields.io/badge/version-1.1.0-blue.svg)](https://github.com/sirblobby/typst-desktop) [![License](https://img.shields.io/badge/license-Apache_2.0-green.svg)](LICENSE) [![Typst Version](https://img.shields.io/badge/Typst-0.15.1-239dad?logo=typst&logoColor=white)](https://typst.app/) [![Rust](https://img.shields.io/badge/Rust-1.82+-orange?logo=rust&logoColor=white)](https://www.rust-lang.org/) @@ -20,7 +20,7 @@ The Typst compiler is built into the app — there is nothing extra to install t Packages are attached to each [release](https://github.com/sirblobby/typst-desktop/releases). Set the version you want first: ```bash -VERSION=1.0.0 +VERSION=1.1.0 BASE=https://github.com/sirblobby/typst-desktop/releases/download/v$VERSION ``` diff --git a/package.json b/package.json index a71f1f1..92a4717 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "typst-desktop", - "version": "1.0.0", + "version": "1.1.0", "description": "", "type": "module", "scripts": { diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index 80f3dac..a4e5233 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: SirBlobby pkgname=typst-desktop -pkgver=1.0.0 +pkgver=1.1.0 pkgrel=1 pkgdesc="A desktop editor for Typst documents with a built-in compiler, live preview, and optional TypstDrive sync" arch=('x86_64') diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index b9cada2..792992b 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -5805,7 +5805,7 @@ dependencies = [ [[package]] name = "typst-desktop" -version = "1.0.0" +version = "1.1.0" dependencies = [ "base64 0.22.1", "chrono", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 93404f8..4e6010a 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typst-desktop" -version = "1.0.0" +version = "1.1.0" description = "A Tauri App" authors = ["SirBlobby"] license = "Apache-2.0" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2026be3..eb053e1 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "typst-desktop", - "version": "1.0.0", + "version": "1.1.0", "identifier": "co.sirblob.typst-desktop", "build": { "beforeDevCommand": "bun run dev",