Skip to content

Commit

Permalink
Release 0.17.8
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Nov 7, 2023
1 parent 78e82fd commit cdb328d
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 43 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "genco"
version = "0.17.7"
version = "0.17.8"
authors = ["John-John Tedro <[email protected]>"]
edition = "2018"
rust-version = "1.58"
Expand All @@ -14,7 +14,7 @@ keywords = ["code-generation", "template"]
categories = ["template-engine"]

[dependencies]
genco-macros = { path = "./genco-macros", version = "=0.17.7" }
genco-macros = { path = "./genco-macros", version = "=0.17.8" }

relative-path = "1.2.0"
smallvec = "1.4.0"
Expand Down
42 changes: 21 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,31 +127,31 @@ fn main() {

<br>

[rust]: https://docs.rs/genco/latest/genco/lang/rust/index.html
[rust-example]: https://github.com/udoprog/genco/blob/master/examples/rust.rs
[java]: https://docs.rs/genco/latest/genco/lang/java/index.html
[java-example]: https://github.com/udoprog/genco/blob/master/examples/java.rs
[c#]: https://docs.rs/genco/latest/genco/lang/csharp/index.html
[c-example]: https://github.com/udoprog/genco/blob/master/examples/c.rs
[c]: https://docs.rs/genco/latest/genco/lang/c/index.html
[c#-example]: https://github.com/udoprog/genco/blob/master/examples/csharp.rs
[go]: https://docs.rs/genco/latest/genco/lang/go/index.html
[go-example]: https://github.com/udoprog/genco/blob/master/examples/go.rs
[dart]: https://docs.rs/genco/latest/genco/lang/dart/index.html
[c#]: https://docs.rs/genco/latest/genco/lang/csharp/index.html
[dart-example]: https://github.com/udoprog/genco/blob/master/examples/dart.rs
[js]: https://docs.rs/genco/latest/genco/lang/js/index.html
[dart]: https://docs.rs/genco/latest/genco/lang/dart/index.html
[go-example]: https://github.com/udoprog/genco/blob/master/examples/go.rs
[go]: https://docs.rs/genco/latest/genco/lang/go/index.html
[impl_lang!]: https://docs.rs/genco/latest/genco/macro.impl_lang.html
[import statements]: https://docs.rs/genco/latest/genco/macro.quote.html#imports
[indentation is meaningful]: https://docs.python.org/3/faq/design.html#why-does-python-use-indentation-for-grouping-of-statements
[interpolate]: https://docs.rs/genco/latest/genco/macro.quote.html#quoted-string-interpolation
[java-example]: https://github.com/udoprog/genco/blob/master/examples/java.rs
[java]: https://docs.rs/genco/latest/genco/lang/java/index.html
[js-example]: https://github.com/udoprog/genco/blob/master/examples/js.rs
[c]: https://docs.rs/genco/latest/genco/lang/c/index.html
[c-example]: https://github.com/udoprog/genco/blob/master/examples/c.rs
[python]: https://docs.rs/genco/latest/genco/lang/python/index.html
[js]: https://docs.rs/genco/latest/genco/lang/js/index.html
[Open an issue!]: https://github.com/udoprog/genco/issues/new
[python-example]: https://github.com/udoprog/genco/blob/master/examples/python.rs
[solve namespace conflicts]: https://docs.rs/genco/latest/genco/lang/csharp/fn.import.html
[indentation is meaningful]: https://docs.python.org/3/faq/design.html#why-does-python-use-indentation-for-grouping-of-statements
[token streams]: https://docs.rs/genco/latest/genco/tokens/struct.Tokens.html
[import statements]: https://docs.rs/genco/latest/genco/macro.quote.html#imports
[python]: https://docs.rs/genco/latest/genco/lang/python/index.html
[quote strings]: https://docs.rs/genco/latest/genco/macro.quote.html#string-quoting
[interpolate]: https://docs.rs/genco/latest/genco/macro.quote.html#quoted-string-interpolation
[whitespace detection]: https://docs.rs/genco/latest/genco/macro.quote.html#whitespace-detection
[quote!]: https://docs.rs/genco/latest/genco/macro.quote.html
[quote_in!]: https://docs.rs/genco/latest/genco/macro.quote_in.html
[impl_lang!]: https://docs.rs/genco/latest/genco/macro.impl_lang.html
[quote!]: https://docs.rs/genco/latest/genco/macro.quote.html
[quoted()]: https://docs.rs/genco/latest/genco/tokens/fn.quoted.html
[Open an issue!]: https://github.com/udoprog/genco/issues/new
[rust-example]: https://github.com/udoprog/genco/blob/master/examples/rust.rs
[rust]: https://docs.rs/genco/latest/genco/lang/rust/index.html
[solve namespace conflicts]: https://docs.rs/genco/latest/genco/lang/csharp/fn.import.html
[token streams]: https://docs.rs/genco/latest/genco/tokens/struct.Tokens.html
[whitespace detection]: https://docs.rs/genco/latest/genco/macro.quote.html#whitespace-detection
2 changes: 1 addition & 1 deletion genco-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "genco-macros"
version = "0.17.7"
version = "0.17.8"
authors = ["John-John Tedro <[email protected]>"]
edition = "2018"
rust-version = "1.58"
Expand Down
40 changes: 21 additions & 19 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,32 +125,34 @@
//!
//! <br>
//!
//! [rust]: https://docs.rs/genco/latest/genco/lang/rust/index.html
//! [rust-example]: https://github.com/udoprog/genco/blob/master/examples/rust.rs
//! [java]: https://docs.rs/genco/latest/genco/lang/java/index.html
//! [java-example]: https://github.com/udoprog/genco/blob/master/examples/java.rs
//! [c#]: https://docs.rs/genco/latest/genco/lang/csharp/index.html
//! [c-example]: https://github.com/udoprog/genco/blob/master/examples/c.rs
//! [c]: https://docs.rs/genco/latest/genco/lang/c/index.html
//! [c#-example]: https://github.com/udoprog/genco/blob/master/examples/csharp.rs
//! [go]: https://docs.rs/genco/latest/genco/lang/go/index.html
//! [go-example]: https://github.com/udoprog/genco/blob/master/examples/go.rs
//! [dart]: https://docs.rs/genco/latest/genco/lang/dart/index.html
//! [c#]: https://docs.rs/genco/latest/genco/lang/csharp/index.html
//! [dart-example]: https://github.com/udoprog/genco/blob/master/examples/dart.rs
//! [js]: https://docs.rs/genco/latest/genco/lang/js/index.html
//! [dart]: https://docs.rs/genco/latest/genco/lang/dart/index.html
//! [go-example]: https://github.com/udoprog/genco/blob/master/examples/go.rs
//! [go]: https://docs.rs/genco/latest/genco/lang/go/index.html
//! [impl_lang!]: https://docs.rs/genco/latest/genco/macro.impl_lang.html
//! [import statements]: https://docs.rs/genco/latest/genco/macro.quote.html#imports
//! [indentation is meaningful]: https://docs.python.org/3/faq/design.html#why-does-python-use-indentation-for-grouping-of-statements
//! [interpolate]: https://docs.rs/genco/latest/genco/macro.quote.html#quoted-string-interpolation
//! [java-example]: https://github.com/udoprog/genco/blob/master/examples/java.rs
//! [java]: https://docs.rs/genco/latest/genco/lang/java/index.html
//! [js-example]: https://github.com/udoprog/genco/blob/master/examples/js.rs
//! [c]: https://docs.rs/genco/latest/genco/lang/c/index.html
//! [c-example]: https://github.com/udoprog/genco/blob/master/examples/c.rs
//! [python]: https://docs.rs/genco/latest/genco/lang/python/index.html
//! [js]: https://docs.rs/genco/latest/genco/lang/js/index.html
//! [Open an issue!]: https://github.com/udoprog/genco/issues/new
//! [python-example]: https://github.com/udoprog/genco/blob/master/examples/python.rs
//! [python]: https://docs.rs/genco/latest/genco/lang/python/index.html
//! [quote strings]: https://docs.rs/genco/latest/genco/macro.quote.html#string-quoting
//! [quote_in!]: https://docs.rs/genco/latest/genco/macro.quote_in.html
//! [quote!]: https://docs.rs/genco/latest/genco/macro.quote.html
//! [quoted()]: https://docs.rs/genco/latest/genco/tokens/fn.quoted.html
//! [rust-example]: https://github.com/udoprog/genco/blob/master/examples/rust.rs
//! [rust]: https://docs.rs/genco/latest/genco/lang/rust/index.html
//! [solve namespace conflicts]: https://docs.rs/genco/latest/genco/lang/csharp/fn.import.html
//! [indentation is meaningful]: https://docs.python.org/3/faq/design.html#why-does-python-use-indentation-for-grouping-of-statements
//! [token streams]: https://docs.rs/genco/latest/genco/tokens/struct.Tokens.html
//! [import statements]: https://docs.rs/genco/latest/genco/macro.quote.html#imports
//! [quote strings]: https://docs.rs/genco/latest/genco/macro.quote.html#string-quoting
//! [interpolate]: https://docs.rs/genco/latest/genco/macro.quote.html#quoted-string-interpolation
//! [whitespace detection]: https://docs.rs/genco/latest/genco/macro.quote.html#whitespace-detection
//! [impl_lang!]: https://docs.rs/genco/latest/genco/macro.impl_lang.html
//! [quoted()]: https://docs.rs/genco/latest/genco/tokens/fn.quoted.html
//! [Open an issue!]: https://github.com/udoprog/genco/issues/new

#![deny(missing_docs)]
#![deny(rustdoc::broken_intra_doc_links)]
Expand Down

0 comments on commit cdb328d

Please sign in to comment.