Skip to content

Commit

Permalink
chore: bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
trobonox committed Feb 1, 2023
1 parent f3ecca5 commit 3cf8c76
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 43 deletions.
6 changes: 3 additions & 3 deletions components/modal/Help.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@
</p>
<p class="pt-2">
Copyright (c) Copyright (c) 2022-2023 trobonox ([email protected]) <br>
Kanri v0.3.1
Kanri v0.3.2
</p>
<nuxt-link
to="/licenses"
class="text-accent text-accent-darker-hover"
@click="$emit('closeModal')"
>
Third-party license notices
>
Third-party license notices
</nuxt-link>
</main>
</template>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kanri",
"private": true,
"version": "0.3.1",
"version": "0.3.2",
"description": "Offline-first Kanban board desktop app",
"author": "trobonox <[email protected]>",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 36 additions & 36 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
# SPDX-FileCopyrightText: Copyright (c) 2022-2023 trobonox <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0

[package]
name = "kanri"
version = "0.3.1"
description = "Offline kanban board application"
authors = ["trobonox"]
license = "Apache-2.0"
repository = "https://github.com/trobonox/tauri"
default-run = "kanri"
edition = "2021"
rust-version = "1.57"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "1.2.1", features = [] }

[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.2.4", features = ["dialog-message", "dialog-open", "dialog-save", "fs-write-file", "protocol-asset", "shell-open"] }
# SPDX-FileCopyrightText: Copyright (c) 2022-2023 trobonox <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0

[package]
name = "kanri"
version = "0.3.2"
description = "Offline kanban board application"
authors = ["trobonox"]
license = "Apache-2.0"
repository = "https://github.com/trobonox/tauri"
default-run = "kanri"
edition = "2021"
rust-version = "1.57"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "1.2.1", features = [] }

[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.2.4", features = ["dialog-message", "dialog-open", "dialog-save", "fs-write-file", "protocol-asset", "shell-open"] }
tauri-plugin-persisted-scope = { version = "0.1", features = [
"protocol-asset",
] }
ignore = "=0.4.18"
tauri-plugin-autostart = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" }
tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" }

[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = ["custom-protocol"]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = ["tauri/custom-protocol"]
] }
ignore = "=0.4.18"
tauri-plugin-autostart = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" }
tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" }

[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = ["custom-protocol"]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = ["tauri/custom-protocol"]
4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "kanri",
"version": "0.3.1"
"version": "0.3.2"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -93,4 +93,4 @@
}
]
}
}
}

0 comments on commit 3cf8c76

Please sign in to comment.