From 01215840e2fc5275b591feef8afc8fc18ff010df Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 4 Dec 2023 20:06:23 +0000 Subject: [PATCH] release: 0.0.3 [skip ci] ## [0.0.3](https://github.com/fensak-io/senc/compare/v0.0.2...v0.0.3) (2023-12-04) ### Bug Fixes * Add a new import builtin function that allows importing json and yaml config in a manner compatible with vanilla TypeScript ([253a91a](https://github.com/fensak-io/senc/commit/253a91aaf20b01438d18b372af5275e12db0b91d)) * Fix error handling in module loader so that it doesn't panic ([6286065](https://github.com/fensak-io/senc/commit/628606590d00d4c6f8cccdd4b75405e77dd7bb8a)) ### Features * Add support for generating multiple files from a single generator ([71ec53e](https://github.com/fensak-io/senc/commit/71ec53e1a99d0ca4ff569e6c70d2710322132352)) * Add support for importing without extension ([ad4887b](https://github.com/fensak-io/senc/commit/ad4887bfa825d5dd23743bcd22f49d7aab060a54)) * Add support for importing yaml files ([30e2e86](https://github.com/fensak-io/senc/commit/30e2e86442609bf4434994599ca83d810a85f9ea)) * Add support for passing in TLA for main function ([6b728e2](https://github.com/fensak-io/senc/commit/6b728e229884c0868982e821905d7fffe3433254)) * Add support for specifying a prefix string to prepend to the output data ([b6d5d30](https://github.com/fensak-io/senc/commit/b6d5d305b5b720f120455b065f9d5ef8cc2168db)) * Rename path.relpath to path.rel to avoid stuttering ([8490fd6](https://github.com/fensak-io/senc/commit/8490fd6fec780225cb51b9ab00b795d50eac8300)) --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 153071f..0d07126 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1287,7 +1287,7 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "senc" -version = "0.0.2" +version = "0.0.3" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index dc4939d..7e2cd3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "senc" -version = "0.0.2" +version = "0.0.3" edition = "2021" build = "build.rs"