Skip to content

Commit fe0f0c8

Browse files
chore(release): bump to 2.0.0 after pivot
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 1db05a4 commit fe0f0c8

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ There is **no hosted live demo** (desktop-only). Below are proof screenshots fro
3232

3333
### Windows (one-click from GitHub Releases)
3434

35-
Installers are built with Tauri and uploaded as release assets. After you publish [release v0.1.0](https://github.com/ChimdumebiNebolisa/StackDrop/releases/tag/v0.1.0) with the bundle outputs, use these direct downloads (same filenames as `npm run tauri -- build` on Windows x64):
35+
Installers are built with Tauri and uploaded as release assets. After you publish [release v2.0.0](https://github.com/ChimdumebiNebolisa/StackDrop/releases/tag/v2.0.0) with the bundle outputs, use these direct downloads (same filenames as `npm run tauri -- build` on Windows x64):
3636

3737
| Installer | Download |
3838
|-----------|----------|
39-
| **NSIS setup (recommended)** | [StackDrop_0.1.0_x64-setup.exe](https://github.com/ChimdumebiNebolisa/StackDrop/releases/download/v0.1.0/StackDrop_0.1.0_x64-setup.exe) |
40-
| **WiX MSI** | [StackDrop_0.1.0_x64_en-US.msi](https://github.com/ChimdumebiNebolisa/StackDrop/releases/download/v0.1.0/StackDrop_0.1.0_x64_en-US.msi) |
39+
| **NSIS setup (recommended)** | [StackDrop_2.0.0_x64-setup.exe](https://github.com/ChimdumebiNebolisa/StackDrop/releases/download/v2.0.0/StackDrop_2.0.0_x64-setup.exe) |
40+
| **WiX MSI** | [StackDrop_2.0.0_x64_en-US.msi](https://github.com/ChimdumebiNebolisa/StackDrop/releases/download/v2.0.0/StackDrop_2.0.0_x64_en-US.msi) |
4141

4242
[All releases](https://github.com/ChimdumebiNebolisa/StackDrop/releases)
4343

@@ -50,12 +50,12 @@ npm install
5050
npm run tauri -- build
5151
```
5252

53-
`tauri build` runs `beforeBuildCommand` (the web build). On **Windows x64**, artifacts land under `src-tauri/target/release/bundle/` (version comes from `src-tauri/tauri.conf.json` and `src-tauri/Cargo.toml`, currently **0.1.0**):
53+
`tauri build` runs `beforeBuildCommand` (the web build). On **Windows x64**, artifacts land under `src-tauri/target/release/bundle/` (version comes from `src-tauri/tauri.conf.json` and `src-tauri/Cargo.toml`, currently **2.0.0**):
5454

5555
| Artifact | Relative path |
5656
|----------|----------------|
57-
| NSIS installer | `src-tauri/target/release/bundle/nsis/StackDrop_0.1.0_x64-setup.exe` |
58-
| WiX MSI | `src-tauri/target/release/bundle/msi/StackDrop_0.1.0_x64_en-US.msi` |
57+
| NSIS installer | `src-tauri/target/release/bundle/nsis/StackDrop_2.0.0_x64-setup.exe` |
58+
| WiX MSI | `src-tauri/target/release/bundle/msi/StackDrop_2.0.0_x64_en-US.msi` |
5959
| Unsigned app binary | `src-tauri/target/release/stackdrop.exe` |
6060

6161
The `target/` tree is not committed; build locally or in CI. Bump `version` in both Tauri config and `Cargo.toml` when you cut a new release.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "stackdrop",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "2.0.0",
55
"license": "MIT",
66
"type": "module",
77
"scripts": {

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 = "stackdrop"
3-
version = "0.1.0"
3+
version = "2.0.0"
44
description = "Local-first desktop folder document indexer"
55
authors = ["StackDrop"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "StackDrop",
4-
"version": "0.1.0",
4+
"version": "2.0.0",
55
"identifier": "com.stackdrop.app",
66
"build": {
77
"beforeDevCommand": "npm run dev:web",

0 commit comments

Comments
 (0)