diff --git a/Cargo.lock b/Cargo.lock index a332a66..6043969 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -80,18 +80,18 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.5.21" +version = "4.5.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb3b4b9e5a7c7514dfa52869339ee98b3156b0bfb4e8a77c4ff4babb64b1604f" +checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84" dependencies = [ "clap_builder", ] [[package]] name = "clap_builder" -version = "4.5.21" +version = "4.5.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b17a95aa67cc7b5ebd32aa5370189aa0d79069ef1c64ce893bd30fb24bff20ec" +checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838" dependencies = [ "anstream", "anstyle", @@ -110,9 +110,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.7.3" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afb84c814227b90d6895e01398aee0d8033c00e7466aca416fb6a8e0eb19d8a7" +checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6" [[package]] name = "clap_mangen" @@ -326,9 +326,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.89" +version = "1.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" +checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" dependencies = [ "unicode-ident", ] @@ -405,7 +405,7 @@ checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -442,9 +442,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.87" +version = "2.0.90" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" +checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31" dependencies = [ "proc-macro2", "quote", @@ -453,7 +453,7 @@ dependencies = [ [[package]] name = "tex-fmt" -version = "0.4.7" +version = "0.5.0" dependencies = [ "clap", "clap_complete", @@ -486,7 +486,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.87", + "syn 2.0.90", ] [[package]] @@ -525,9 +525,9 @@ dependencies = [ [[package]] name = "unicode-ident" -version = "1.0.13" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" +checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" [[package]] name = "utf8parse" diff --git a/Cargo.toml b/Cargo.toml index f445565..c070509 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tex-fmt" -version = "0.4.7" +version = "0.5.0" authors = ["William George Underwood"] license = "MIT" repository = "https://github.com/WGUNDERWOOD/tex-fmt" @@ -11,7 +11,7 @@ categories = ["command-line-utilities", "development-tools"] exclude = ["tests/*", "extra/*", "*.nix", ".github/*", "completion/*", "man/*"] [dependencies] -clap = { version = "4.5.21", features = ["cargo"] } +clap = { version = "4.5.23", features = ["cargo"] } clap_complete = "4.5.38" clap_mangen = "0.2.24" colored = "2.1.0" @@ -25,7 +25,7 @@ similar = "2.6.0" toml = "0.8.19" [build-dependencies] -clap = { version = "4.5.21", features = ["cargo"] } +clap = { version = "4.5.23", features = ["cargo"] } clap_complete = "4.5.38" clap_mangen = "0.2.24" diff --git a/flake.lock b/flake.lock index 4108758..868ab74 100644 --- a/flake.lock +++ b/flake.lock @@ -20,16 +20,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1731386116, - "narHash": "sha256-lKA770aUmjPHdTaJWnP3yQ9OI1TigenUqVC3wweqZuI=", + "lastModified": 1733412085, + "narHash": "sha256-FillH0qdWDt/nlO6ED7h4cmN+G9uXwGjwmCnHs0QVYM=", "owner": "nixos", "repo": "nixpkgs", - "rev": "689fed12a013f56d4c4d3f612489634267d86529", + "rev": "4dc2fc4e62dbf62b84132fe526356fbac7b03541", "type": "github" }, "original": { "owner": "nixos", - "ref": "nixos-24.05", + "ref": "nixos-24.11", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 18890ea..f776c81 100644 --- a/flake.nix +++ b/flake.nix @@ -1,7 +1,7 @@ { description = "LaTeX formatter written in Rust"; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; flake-utils.url = "github:numtide/flake-utils"; }; outputs = { diff --git a/man/tex-fmt.1 b/man/tex-fmt.1 index e872cbe..f411718 100644 --- a/man/tex-fmt.1 +++ b/man/tex-fmt.1 @@ -1,6 +1,6 @@ .ie \n(.g .ds Aq \(aq .el .ds Aq ' -.TH tex-fmt 1 "tex-fmt 0.4.7" +.TH tex-fmt 1 "tex-fmt 0.5.0" .SH NAME tex\-fmt \- LaTeX formatter written in Rust .SH SYNOPSIS @@ -67,6 +67,6 @@ Print version [\fIfiles\fR] List of files to be formatted .SH VERSION -v0.4.7 +v0.5.0 .SH AUTHORS William George Underwood, wg.underwood13@gmail.com diff --git a/notes.org b/notes.org index cc45fc1..8db1d6d 100644 --- a/notes.org +++ b/notes.org @@ -12,19 +12,19 @@ ** Args resolver ** GitHub README * Release process -** Update release notes -*** git log --oneline --no-merges vX.X.X..main -*** Write in NEWS.md -** Update version number in Cargo.toml -** Update Nix flake and lock -*** Check for new NixOS version (nixos-XX.XX) -*** just nix -** Update Rust version -*** just upgrade +** DONE Update release notes +*** DONE git log --oneline --no-merges vX.X.X..main +*** DONE Write in NEWS.md +** DONE Update version number in Cargo.toml +** DONE Update Nix flake and lock +*** DONE Check for new NixOS version (nixos-XX.XX) for flake.nix +*** DONE just nix +** DONE Update Rust version +*** DONE just upgrade ** Run tests -*** just -*** just perf -*** Update performance results in README.md +*** DONE just +*** DONE just perf +*** DONE Update performance results in README.md ** Push to GitHub and check tests pass ** Create a git tag *** git tag vX.X.X