Skip to content

Commit

Permalink
Prep release for 1.0.1 (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejhirsz authored Oct 16, 2024
1 parent 5bd9975 commit 5eaf66e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ramhorns-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ramhorns-derive"
version = "1.0.0"
version = "1.0.1"
authors = ["Maciej Hirsz <[email protected]>"]
license = "MPL-2.0"
edition = "2018"
Expand Down
6 changes: 3 additions & 3 deletions ramhorns/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ramhorns"
version = "1.0.0"
version = "1.0.1"
authors = ["Maciej Hirsz <[email protected]>"]
license = "MPL-2.0"
edition = "2018"
Expand All @@ -15,8 +15,8 @@ categories = ["template-engine"]
arrayvec = "0.7.4"
beef = "0.5.2"
fnv = "1.0"
pulldown-cmark = { version = "0.12", default_features = false, features = ["html"], optional = true }
ramhorns-derive = { version = "1.0.0", path = "../ramhorns-derive", optional = true }
pulldown-cmark = { version = "0.12", default-features = false, features = ["html"], optional = true }
ramhorns-derive = { version = "1.0.1", path = "../ramhorns-derive", optional = true }
logos = "0.14.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tests/benches/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const POST: Post = Post {
body: "This is a really simple test of the rendering!",
};
const RENDERED_BYTES: u64 =
{ (POST.title.len() + POST.body.len() + "<title></title><h1></h1><div></div>".len()) as u64 };
(POST.title.len() + POST.body.len() + "<title></title><h1></h1><div></div>".len()) as u64;

#[derive(Content, Serialize, Template)]
#[template(
Expand Down

0 comments on commit 5eaf66e

Please sign in to comment.