-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This release includes the following major changes: * `derive_more` was removed as a dependency. * Collections are now associated with a name. * Internal refactor for a new `OwnedEntry`. * Updated to minijinja2. * Undefined variables now result in errors. * Added a `get()` template helper with a default when undefined. * Added a real CLI parser. * Added a `time!()` macro for wall-clock time measurements. * Now exits with status 1 if rendering fails.
- Loading branch information
1 parent
a40f5fd
commit 34954dd
Showing
28 changed files
with
343 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# Version 0.0.2 (Apr 4, 2024) | ||
|
||
This is the second testing release of Mockingbird. More details to come. | ||
|
||
# Version 0.0.1 (Mar 3, 2024) | ||
|
||
This is the initial testing release of Mockingbird. More details to come. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "harper" | ||
version = "0.0.1" | ||
version = "0.0.2" | ||
edition = "2021" | ||
authors = ["Sergio Benitez <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -23,7 +23,6 @@ serde = { version = "1", features = ["rc", "derive"] } | |
toml = { version = "0.8", features = ["preserve_order"] } | ||
memchr = "2" | ||
either = "1.10" | ||
derive_more = { version = "=1.0.0-beta.6", features = ["debug", "deref", "from"] } | ||
grass = { version = "0.13", default-features = false, features = ["random"], optional = true } | ||
pulldown-cmark = { version = "0.10", default-features = false, features = ["simd", "html"] } | ||
|
||
|
@@ -56,11 +55,8 @@ default-features = false | |
features = ["html", "default-syntaxes", "regex-onig", "plist-load"] | ||
|
||
[dependencies.minijinja] | ||
# git = "https://github.com/SergioBenitez/minijinja.git" | ||
# # branch = "value-unification" | ||
# rev = "517d147" | ||
package = "unified-minijinja" | ||
version = "1.0.12" | ||
version = "=0.0.2" | ||
default-features = false | ||
features = ["speedups", "loader", "builtins", "debug", "deserialization", "macros", "multi_template"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.