diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-03-31 22:07:48 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-03-31 22:07:48 +0200 |
commit | 1b8c35a874f017aa3c324fc932f49b373f3f249a (patch) | |
tree | 7f3b4ca7e324bc3f29a071db030a1096d5a1acd5 | |
parent | build(cog.toml): Remove unneeded heading (that broke parsing) (diff) | |
download | lpm-1b8c35a874f017aa3c324fc932f49b373f3f249a.tar.gz lpm-1b8c35a874f017aa3c324fc932f49b373f3f249a.zip |
chore(version): v1.0.0
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | NEWS.md | 18 | ||||
-rw-r--r-- | src/config_file.rs | 2 |
4 files changed, 21 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 3bb0abf..aba63e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -282,7 +282,7 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" [[package]] name = "lpm" -version = "0.1.0" +version = "1.0.0" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 40b8513..954c7bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lpm" -version = "0.1.0" +version = "1.0.0" edition = "2021" license = "GPL-3.0-or-later" description = "A configurable LaTeX project manager" diff --git a/NEWS.md b/NEWS.md new file mode 100644 index 0000000..8f73ca9 --- /dev/null +++ b/NEWS.md @@ -0,0 +1,18 @@ +# Changelog +All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. + +- - - +## [v1.0.0](https://https://codeberg.org/soispha/lpm/compare/e94e4304e9bfd64bdf934827ffdf0409c44d991c..v1.0.0) - 2024-03-31 +#### Build system +- **(cog.toml)** Remove unneeded heading (that broke parsing) - ([0a491a7](https://https://codeberg.org/soispha/lpm/commit/0a491a7a319b3fc63e6707504adc563db1e292b0)) - [@bpeetz](https://https://codeberg.org/bpeetz) +#### Documentation +- **(example)** Add an example directory - ([76084f4](https://https://codeberg.org/soispha/lpm/commit/76084f4a268e2de36c4144e1a8891c038178f8ea)) - [@bpeetz](https://https://codeberg.org/bpeetz) +#### Miscellaneous Chores +- **(Cargo.toml)** Add additional meta data - ([c520e2d](https://https://codeberg.org/soispha/lpm/commit/c520e2d9e2635ed332e6d43714804de63b007e8b)) - [@bpeetz](https://https://codeberg.org/bpeetz) +- **(treewide)** Update this project to today's standards. - ([e94e430](https://https://codeberg.org/soispha/lpm/commit/e94e4304e9bfd64bdf934827ffdf0409c44d991c)) - [@bpeetz](https://https://codeberg.org/bpeetz) +#### Refactoring +- **(treewide)** Improve code quality by working with a FileTree - ([2e5e4b5](https://https://codeberg.org/soispha/lpm/commit/2e5e4b5736c446198e36760e254b7c17dd987166)) - [@bpeetz](https://https://codeberg.org/bpeetz) + +- - - + +Changelog generated by [cocogitto](https://github.com/cocogitto/cocogitto). \ No newline at end of file diff --git a/src/config_file.rs b/src/config_file.rs index 838a78d..2233b36 100644 --- a/src/config_file.rs +++ b/src/config_file.rs @@ -15,5 +15,5 @@ pub struct LastChapter { #[derive(Deserialize, Serialize)] pub struct Template { pub section: String, - pub chapter: String + pub chapter: String, } |