Skip to content

Commit 1271dc9

Browse files
committed
chore: bump version to v0.27.0
1 parent 5225bfa commit 1271dc9

File tree

3 files changed

+80
-24
lines changed

3 files changed

+80
-24
lines changed

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.

apps/desktop/src-tauri/Cargo.toml

Lines changed: 78 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "markflowy"
3-
version = "0.26.0"
3+
version = "0.27.0"
44
description = "A Markdown Editor App"
55
authors = ["drl990114"]
66
license = " AGPL-3.0"
@@ -43,18 +43,47 @@ etcetera = "0.10.0"
4343
font-kit = "0.14.3"
4444
url = "2.5.2"
4545
urlencoding = "2.1.3"
46-
async-channel = { version = "2.3" }
47-
async-trait = { version = "0.1.83" }
48-
futures = { version = "0.3.31" }
49-
futures-concurrency = { version = "7.6.2" }
50-
pin-project-lite = { version = "0.2.15" }
51-
thiserror = { version = "2.0.8" }
52-
tokio = { version = "1.41.0", features = ["full", "parking_lot", "rt-multi-thread", "sync", "time"] }
53-
tokio-stream = { version = "0.1.17" }
54-
uuid = { version = "1.16.0", features = ["v4"] }
55-
natural-sort-rs = { version = "0.2.1", features = ["alloc"] }
5646
downcast-rs = "1.2"
5747

48+
[dependencies.async-channel]
49+
version = "2.3"
50+
51+
[dependencies.async-trait]
52+
version = "0.1.83"
53+
54+
[dependencies.futures]
55+
version = "0.3.31"
56+
57+
[dependencies.futures-concurrency]
58+
version = "7.6.2"
59+
60+
[dependencies.pin-project-lite]
61+
version = "0.2.15"
62+
63+
[dependencies.thiserror]
64+
version = "2.0.8"
65+
66+
[dependencies.tokio]
67+
version = "1.41.0"
68+
features = [
69+
"full",
70+
"parking_lot",
71+
"rt-multi-thread",
72+
"sync",
73+
"time",
74+
]
75+
76+
[dependencies.tokio-stream]
77+
version = "0.1.17"
78+
79+
[dependencies.uuid]
80+
version = "1.16.0"
81+
features = ["v4"]
82+
83+
[dependencies.natural-sort-rs]
84+
version = "0.2.1"
85+
features = ["alloc"]
86+
5887
[dependencies.tauri-plugin-notification]
5988
version = "2.2.2"
6089
features = ["windows7-compat"]
@@ -86,14 +115,41 @@ objc = "0.2.7"
86115
[features]
87116
custom-protocol = ["tauri/custom-protocol"]
88117

89-
[dev-dependencies]
90-
lending-stream = { version = "1.0" }
91-
rand = { version = "0.9.0" }
92-
rmp-serde = { version = "1.3" }
93-
serde = { version = "1.0.130", features = ["derive"] }
94-
tempfile = { version = "3.3.0" }
95-
thiserror = { version = "2.0.8" }
96-
tokio = { version = "1.41.0", features = ["fs", "macros", "test-util"] }
97-
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
98-
tracing-test = { version = "0.2.5", features = ["no-env-filter"] }
99-
uuid = { version = "1.16.0", features = ["serde"] }
118+
[dev-dependencies.lending-stream]
119+
version = "1.0"
120+
121+
[dev-dependencies.rand]
122+
version = "0.9.0"
123+
124+
[dev-dependencies.rmp-serde]
125+
version = "1.3"
126+
127+
[dev-dependencies.serde]
128+
version = "1.0.130"
129+
features = ["derive"]
130+
131+
[dev-dependencies.tempfile]
132+
version = "3.3.0"
133+
134+
[dev-dependencies.thiserror]
135+
version = "2.0.8"
136+
137+
[dev-dependencies.tokio]
138+
version = "1.41.0"
139+
features = [
140+
"fs",
141+
"macros",
142+
"test-util",
143+
]
144+
145+
[dev-dependencies.tracing-subscriber]
146+
version = "0.3.19"
147+
features = ["env-filter"]
148+
149+
[dev-dependencies.tracing-test]
150+
version = "0.2.5"
151+
features = ["no-env-filter"]
152+
153+
[dev-dependencies.uuid]
154+
version = "1.16.0"
155+
features = ["serde"]

apps/desktop/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": "../node_modules/@tauri-apps/cli/config.schema.json",
33
"productName": "MarkFlowy",
4-
"version": "0.26.0",
4+
"version": "0.27.0",
55
"identifier": "com.drl990114.markflowy",
66
"build": {
77
"beforeDevCommand": "yarn dev",

0 commit comments

Comments
 (0)