Skip to content

Releases: komaeda/ko

1.0.0

21 Sep 18:47
Compare
Choose a tag to compare

I think nya is stable enough now to mark it as 1.0!

0.7.1

11 Sep 12:10
Compare
Choose a tag to compare
  • some internal refactoring thanks to @ZhouHansen
  • moved repository

0.7.0

25 Jul 23:13
Compare
Choose a tag to compare
  • made sure that SimpleFile::rel_path strips the source prefix right away instead of at write time
  • this somehow fixes nya::ignore requiring an */ in front of every declaration (it works like you'd think now)
  • removed SimpleFile::abs_path because you can just to rel_path.canonicalize()? instead

https://cra.tw/nya/0.7.0

0.6.0

19 Jul 23:43
Compare
Choose a tag to compare
  • Changed nya::ignore to use owned Strings instead of &'static str

0.5.3

27 Jun 22:39
Compare
Choose a tag to compare
  • Made SimpleFile derive from PartialEq and Clone

0.5.2

22 Jun 09:21
Compare
Choose a tag to compare
  • Changed Cargo.toml to reflect new repository path

0.5.1

20 Jun 19:47
Compare
Choose a tag to compare
  • Made the MiddlewareFunction type public. Now, instead of having to do this:
use nya::SimpleFile;

fn my_middleware() -> Box<FnMut(&mut Vec<SimpleFile>)> {
    // etc
}

You can do:

use nya::MiddlewareFunction;

fn my_middleware() -> MiddlewareFunction {
    // etc
}

0.5.0

20 Jun 19:13
Compare
Choose a tag to compare
  • Made it possible to ignore sets of files as specified by a glob, using a special middleware

0.4.0

09 Jun 16:45
Compare
Choose a tag to compare
  • Added support for per-file custom metadata, making things such as frontmatter parsing possible

0.3.1

07 Jun 18:23
Compare
Choose a tag to compare
  • Added proper crate documentation and doctests