Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From dupnamegen-0.1.0 To dupnamegen-0.1.1
2024-10-14
| ||
08:22 | Fix arrows. check-in: 49f67e2e8b user: jan tags: trunk | |
07:38 | Release maintenance. check-in: d6801359ea user: jan tags: trunk, dupnamegen-0.1.1 | |
07:36 | Implement Debug for Naming. check-in: 28e0fc2f8a user: jan tags: trunk | |
07:13 | docrs work. check-in: 98f859b685 user: jan tags: trunk, dupnamegen-0.1.0 | |
07:08 | Move from old repo. check-in: 72ea043daf user: jan tags: trunk | |
Changes to Cargo.toml.
1 2 | [package] name = "dupnamegen" | | | 1 2 3 4 5 6 7 8 9 10 | [package] name = "dupnamegen" version = "0.1.1" edition = "2021" license = "0BSD" # https://crates.io/category_slugs categories = [ "filesystem" ] keywords = [ "filename", "generator" ] repository = "https://repos.qrnch.tech/pub/dupnamegen" description = "Sequential file name generator." |
︙ | ︙ |
Changes to src/lib.rs.
︙ | ︙ | |||
14 15 16 17 18 19 20 | #[cfg(feature = "serde")] use serde::Deserialize; pub use err::Error; /// The naming convention used when generating new names. | | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #[cfg(feature = "serde")] use serde::Deserialize; pub use err::Error; /// The naming convention used when generating new names. #[derive(Debug, Default, Copy, Clone, PartialEq, Eq)] #[cfg_attr(feature = "serde", derive(Deserialize))] pub enum Naming { /// - `Foo.zip` → `Foo(1).zip` /// - `.dotfile` → `.dotfile(1)` /// - `hello.txt` → `hello(1).txt` /// - `lua-5.4.7.tar.gz` → `lua-5.4.7(1).tar.gz` #[default] |
︙ | ︙ |
Changes to www/changelog.md.
1 2 3 4 5 6 | # Change Log ⚠️ indicates a breaking change. ## [Unreleased] | | > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # Change Log ⚠️ indicates a breaking change. ## [Unreleased] [Details](/vdiff?from=dupnamegen-0.1.1&to=trunk) ### Added ### Changed ### Removed --- ## [0.1.1] - 2024-10-14 [Details](/vdiff?from=dupnamegen-0.1.0&to=dupnamegen-0.1.1) ### Added - Implement `Debug` for `Naming`. --- ## [0.1.0] - 2024-10-14 Initial release. |