Skip to content

Commit a02b4a0

Browse files
committed
fix export bug and bump
1 parent 4997122 commit a02b4a0

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "MIT"
1313
name = "sunfish"
1414
publish = true
1515
repository = "https://github.com/tangramxyz/sunfish"
16-
version = "0.2.2"
16+
version = "0.2.3"
1717

1818
[lib]
1919
path = "lib.rs"

lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ impl ReleaseSunfish {
294294
.unwrap_or_else(|| vec![route.path_with_placeholders.clone()]);
295295
for path in paths {
296296
let output_html_path = match path.as_str() {
297-
"/" => "index.html".to_owned(),
297+
"/" => "/index.html".to_owned(),
298298
path if path.ends_with('/') => format!("{}index.html", path),
299299
path => format!("{}.html", path),
300300
};

macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "sunfish_macro"
99
publish = true
1010
repository = "https://github.com/tangramxyz/sunfish"
11-
version = "0.2.2"
11+
version = "0.2.3"
1212

1313
[lib]
1414
path = "lib.rs"

0 commit comments

Comments
 (0)