Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package nomino for openSUSE:Factory checked 
in at 2025-01-05 15:31:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nomino (Old)
 and      /work/SRC/openSUSE:Factory/.nomino.new.1881 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "nomino"

Sun Jan  5 15:31:22 2025 rev:8 rq:1234883 version:1.4.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/nomino/nomino.changes    2024-12-06 
14:27:50.424165332 +0100
+++ /work/SRC/openSUSE:Factory/.nomino.new.1881/nomino.changes  2025-01-05 
15:31:38.966732372 +0100
@@ -1,0 +2,7 @@
+Sat Jan  4 07:38:58 UTC 2025 - Joshua Smith <smolsh...@opensuse.org>
+
+- Update to version 1.4.0:
+  * Bumped version and update dependencies
+  * add alias dry-run option
+
+-------------------------------------------------------------------

Old:
----
  nomino-1.3.7.obscpio

New:
----
  nomino-1.4.0.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ nomino.spec ++++++
--- /var/tmp/diff_new_pack.YS1Cfh/_old  2025-01-05 15:31:39.654760670 +0100
+++ /var/tmp/diff_new_pack.YS1Cfh/_new  2025-01-05 15:31:39.654760670 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package nomino
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           nomino
-Version:        1.3.7
+Version:        1.4.0
 Release:        0
 Summary:        Batch rename utility for developers
 License:        Apache-2.0 OR MIT

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.YS1Cfh/_old  2025-01-05 15:31:39.702762645 +0100
+++ /var/tmp/diff_new_pack.YS1Cfh/_new  2025-01-05 15:31:39.706762810 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/yaa110/nomino.git</param>
-              <param 
name="changesrevision">09c178c7f1e1b2da8c86c0966ab70323d138c81d</param></service></servicedata>
+              <param 
name="changesrevision">ead5cf54967f8e095abeeb30f8cac676ef9b3788</param></service></servicedata>
 (No newline at EOF)
 

++++++ nomino-1.3.7.obscpio -> nomino-1.4.0.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nomino-1.3.7/.github/workflows/release.yml 
new/nomino-1.4.0/.github/workflows/release.yml
--- old/nomino-1.3.7/.github/workflows/release.yml      2024-12-01 
23:16:41.000000000 +0100
+++ new/nomino-1.4.0/.github/workflows/release.yml      2024-12-29 
11:20:16.000000000 +0100
@@ -23,11 +23,8 @@
     needs: [release]
     steps:
       - uses: actions/checkout@v4
-      - uses: actions-rs/toolchain@v1
-        with:
-          toolchain: stable
-          default: true
-      - run: cargo build --release -j`nproc`
+      - uses: actions-rust-lang/setup-rust-toolchain@v1
+      - run: cargo build --release
       - run: |
           mv target/release/nomino nomino-linux-64bit
           gh release upload "v${{ github.ref_name }}" nomino-linux-64bit 
--clobber
@@ -41,11 +38,8 @@
     needs: [release]
     steps:
       - uses: actions/checkout@v4
-      - uses: actions-rs/toolchain@v1
-        with:
-          toolchain: stable
-          default: true
-      - run: cargo build --release -j`sysctl -n hw.physicalcpu`
+      - uses: actions-rust-lang/setup-rust-toolchain@v1
+      - run: cargo build --release
       - run: |
           mv target/release/nomino nomino-macos-64bit
           gh release upload "v${{ github.ref_name }}" nomino-macos-64bit 
--clobber
@@ -59,10 +53,7 @@
     needs: [release]
     steps:
       - uses: actions/checkout@v4
-      - uses: actions-rs/toolchain@v1
-        with:
-          toolchain: stable
-          default: true
+      - uses: actions-rust-lang/setup-rust-toolchain@v1
       - run: cargo build --release
       - run: |
           mv target/release/nomino.exe nomino-windows-64bit.exe
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nomino-1.3.7/.github/workflows/test.yml 
new/nomino-1.4.0/.github/workflows/test.yml
--- old/nomino-1.3.7/.github/workflows/test.yml 2024-12-01 23:16:41.000000000 
+0100
+++ new/nomino-1.4.0/.github/workflows/test.yml 2024-12-29 11:20:16.000000000 
+0100
@@ -11,40 +11,15 @@
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v4
-      - uses: actions-rs/toolchain@v1
+      - uses: actions-rust-lang/setup-rust-toolchain@v1
         with:
-          default: true
-          toolchain: stable
           components: rustfmt, clippy
-      - uses: actions-rs/cargo@v1
-        with:
-          command: test
-      - uses: actions-rs/cargo@v1
-        with:
-          command: fmt
-          args: -- --check
-      - uses: actions-rs/cargo@v1
-        with:
-          command: clippy
+      - run: cargo test
+      - run: cargo fmt -- --check
+      - run: cargo clippy
   macos:
     runs-on: macos-latest
     steps:
       - uses: actions/checkout@v4
-      - uses: actions-rs/toolchain@v1
-        with:
-          default: true
-          toolchain: stable
-      - uses: actions-rs/cargo@v1
-        with:
-          command: test
-  windows:
-    runs-on: windows-latest
-    steps:
-      - uses: actions/checkout@v4
-      - uses: actions-rs/toolchain@v1
-        with:
-          default: true
-          toolchain: stable
-      - uses: actions-rs/cargo@v1
-        with:
-          command: test
+      - uses: actions-rust-lang/setup-rust-toolchain@v1
+      - run: cargo test
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nomino-1.3.7/Cargo.lock new/nomino-1.4.0/Cargo.lock
--- old/nomino-1.3.7/Cargo.lock 2024-12-01 23:16:41.000000000 +0100
+++ new/nomino-1.4.0/Cargo.lock 2024-12-29 11:20:16.000000000 +0100
@@ -62,9 +62,9 @@
 
 [[package]]
 name = "anyhow"
-version = "1.0.93"
+version = "1.0.95"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775"
+checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
 
 [[package]]
 name = "assert_cmd"
@@ -90,9 +90,9 @@
 
 [[package]]
 name = "bstr"
-version = "1.11.0"
+version = "1.11.1"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "1a68f1f47cdf0ec8ee4b941b2eee2a80cb796db73118c0dd09ac63fbe405be22"
+checksum = "786a307d683a5bf92e6fd5fd69a7eb613751668d1d8d67d802846dfe367c62c8"
 dependencies = [
  "memchr",
  "regex-automata",
@@ -107,9 +107,9 @@
 
 [[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",
  "clap_derive",
@@ -117,9 +117,9 @@
 
 [[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",
@@ -141,9 +141,9 @@
 
 [[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 = "colorchoice"
@@ -153,12 +153,12 @@
 
 [[package]]
 name = "colored"
-version = "2.1.0"
+version = "2.2.0"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8"
+checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
 dependencies = [
  "lazy_static",
- "windows-sys 0.48.0",
+ "windows-sys 0.59.0",
 ]
 
 [[package]]
@@ -233,9 +233,9 @@
 
 [[package]]
 name = "fastrand"
-version = "2.2.0"
+version = "2.3.0"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4"
+checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
 
 [[package]]
 name = "getrandom"
@@ -291,9 +291,9 @@
 
 [[package]]
 name = "libc"
-version = "0.2.167"
+version = "0.2.169"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "09d6582e104315a817dff97f75133544b2e094ee22447d2acf4a74e189ba06fc"
+checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
 
 [[package]]
 name = "libredox"
@@ -325,7 +325,7 @@
 
 [[package]]
 name = "nomino"
-version = "1.3.7"
+version = "1.4.0"
 dependencies = [
  "anyhow",
  "assert_cmd",
@@ -348,9 +348,9 @@
 
 [[package]]
 name = "predicates"
-version = "3.1.2"
+version = "3.1.3"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97"
+checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
 dependencies = [
  "anstyle",
  "difflib",
@@ -359,15 +359,15 @@
 
 [[package]]
 name = "predicates-core"
-version = "1.0.8"
+version = "1.0.9"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931"
+checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
 
 [[package]]
 name = "predicates-tree"
-version = "1.0.11"
+version = "1.0.12"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13"
+checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
 dependencies = [
  "predicates-core",
  "termtree",
@@ -398,9 +398,9 @@
 
 [[package]]
 name = "quote"
-version = "1.0.37"
+version = "1.0.38"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
+checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
 dependencies = [
  "proc-macro2",
 ]
@@ -447,22 +447,22 @@
 
 [[package]]
 name = "rustix"
-version = "0.38.41"
+version = "0.38.42"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6"
+checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
 dependencies = [
  "bitflags",
  "errno",
  "libc",
  "linux-raw-sys",
- "windows-sys 0.52.0",
+ "windows-sys 0.59.0",
 ]
 
 [[package]]
 name = "rustversion"
-version = "1.0.18"
+version = "1.0.19"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
+checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
 
 [[package]]
 name = "ryu"
@@ -481,18 +481,18 @@
 
 [[package]]
 name = "serde"
-version = "1.0.215"
+version = "1.0.217"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
+checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
 dependencies = [
  "serde_derive",
 ]
 
 [[package]]
 name = "serde_derive"
-version = "1.0.215"
+version = "1.0.217"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
+checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
 dependencies = [
  "proc-macro2",
  "quote",
@@ -501,9 +501,9 @@
 
 [[package]]
 name = "serde_json"
-version = "1.0.133"
+version = "1.0.134"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
+checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d"
 dependencies = [
  "itoa",
  "memchr",
@@ -519,9 +519,9 @@
 
 [[package]]
 name = "syn"
-version = "2.0.90"
+version = "2.0.93"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31"
+checksum = "9c786062daee0d6db1132800e623df74274a0a87322d8e183338e01b3d98d058"
 dependencies = [
  "proc-macro2",
  "quote",
@@ -554,9 +554,9 @@
 
 [[package]]
 name = "termtree"
-version = "0.4.1"
+version = "0.5.1"
 source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
+checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
 
 [[package]]
 name = "thiserror"
@@ -654,20 +654,11 @@
 
 [[package]]
 name = "windows-sys"
-version = "0.48.0"
-source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
-dependencies = [
- "windows-targets 0.48.5",
-]
-
-[[package]]
-name = "windows-sys"
 version = "0.52.0"
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
 dependencies = [
- "windows-targets 0.52.6",
+ "windows-targets",
 ]
 
 [[package]]
@@ -676,22 +667,7 @@
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
 dependencies = [
- "windows-targets 0.52.6",
-]
-
-[[package]]
-name = "windows-targets"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
-dependencies = [
- "windows_aarch64_gnullvm 0.48.5",
- "windows_aarch64_msvc 0.48.5",
- "windows_i686_gnu 0.48.5",
- "windows_i686_msvc 0.48.5",
- "windows_x86_64_gnu 0.48.5",
- "windows_x86_64_gnullvm 0.48.5",
- "windows_x86_64_msvc 0.48.5",
+ "windows-targets",
 ]
 
 [[package]]
@@ -700,48 +676,30 @@
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
 dependencies = [
- "windows_aarch64_gnullvm 0.52.6",
- "windows_aarch64_msvc 0.52.6",
- "windows_i686_gnu 0.52.6",
+ "windows_aarch64_gnullvm",
+ "windows_aarch64_msvc",
+ "windows_i686_gnu",
  "windows_i686_gnullvm",
- "windows_i686_msvc 0.52.6",
- "windows_x86_64_gnu 0.52.6",
- "windows_x86_64_gnullvm 0.52.6",
- "windows_x86_64_msvc 0.52.6",
+ "windows_i686_msvc",
+ "windows_x86_64_gnu",
+ "windows_x86_64_gnullvm",
+ "windows_x86_64_msvc",
 ]
 
 [[package]]
 name = "windows_aarch64_gnullvm"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
-
-[[package]]
-name = "windows_aarch64_gnullvm"
 version = "0.52.6"
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
 
 [[package]]
 name = "windows_aarch64_msvc"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
-
-[[package]]
-name = "windows_aarch64_msvc"
 version = "0.52.6"
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
 
 [[package]]
 name = "windows_i686_gnu"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
-
-[[package]]
-name = "windows_i686_gnu"
 version = "0.52.6"
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
@@ -754,48 +712,24 @@
 
 [[package]]
 name = "windows_i686_msvc"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
-
-[[package]]
-name = "windows_i686_msvc"
 version = "0.52.6"
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
 
 [[package]]
 name = "windows_x86_64_gnu"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
-
-[[package]]
-name = "windows_x86_64_gnu"
 version = "0.52.6"
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
 
 [[package]]
 name = "windows_x86_64_gnullvm"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
-
-[[package]]
-name = "windows_x86_64_gnullvm"
 version = "0.52.6"
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
 
 [[package]]
 name = "windows_x86_64_msvc"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index";
-checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
-
-[[package]]
-name = "windows_x86_64_msvc"
 version = "0.52.6"
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nomino-1.3.7/Cargo.toml new/nomino-1.4.0/Cargo.toml
--- old/nomino-1.3.7/Cargo.toml 2024-12-01 23:16:41.000000000 +0100
+++ new/nomino-1.4.0/Cargo.toml 2024-12-29 11:20:16.000000000 +0100
@@ -8,12 +8,12 @@
 name = "nomino"
 readme = "README.md"
 repository = "https://github.com/yaa110/nomino";
-version = "1.3.7"
+version = "1.4.0"
 
 [dependencies]
 anyhow = "1.0"
 clap = {version = "4.5", features = ["derive"]}
-colored = "2.1"
+colored = "2.2"
 is-terminal = "0.4"
 natord = "1.0"
 prettytable-rs = "0.10"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nomino-1.3.7/README.md new/nomino-1.4.0/README.md
--- old/nomino-1.3.7/README.md  2024-12-01 23:16:41.000000000 +0100
+++ new/nomino-1.4.0/README.md  2024-12-29 11:20:16.000000000 +0100
@@ -37,7 +37,8 @@
     -k, --mkdir        Recursively creates all parent directories of 
'<OUTPUT>' if they are missing
     -w, --overwrite    Overwrites output files, otherwise, a '_' is prepended 
to filename
     -p, --print        Prints the map table to stdout
-    -t, --test         Runs in test mode without renaming actual files 
(dry-run)
+    -t, --test         Runs in test mode without renaming actual files 
[aliases: dry-run]
+        --dry-run      Alias for --test
     -V, --version      Prints version information
 
 OPTIONS:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nomino-1.3.7/src/cli.rs new/nomino-1.4.0/src/cli.rs
--- old/nomino-1.3.7/src/cli.rs 2024-12-01 23:16:41.000000000 +0100
+++ new/nomino-1.4.0/src/cli.rs 2024-12-29 11:20:16.000000000 +0100
@@ -12,8 +12,8 @@
     next_display_order = None,
 )]
 pub struct Cli {
-    /// Runs in test mode without renaming actual files (dry-run).
-    #[arg(short, long)]
+    /// Runs in test mode without renaming actual files.
+    #[arg(short, long, visible_alias = "dry-run")]
     pub test: bool,
     /// Recursively creates all parent directories of '<OUTPUT>' if they are 
missing.
     #[arg(short = 'k', long)]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/nomino-1.3.7/src/input/iterator.rs 
new/nomino-1.4.0/src/input/iterator.rs
--- old/nomino-1.3.7/src/input/iterator.rs      2024-12-01 23:16:41.000000000 
+0100
+++ new/nomino-1.4.0/src/input/iterator.rs      2024-12-29 11:20:16.000000000 
+0100
@@ -9,6 +9,7 @@
 use walkdir::IntoIter as WalkIter;
 use walkdir::WalkDir;
 
+#[allow(clippy::large_enum_variant)]
 pub enum InputIterator {
     VectorIterator(IntoIter<(String, String)>),
     DirectoryIterator {

++++++ nomino.obsinfo ++++++
--- /var/tmp/diff_new_pack.YS1Cfh/_old  2025-01-05 15:31:39.818767416 +0100
+++ /var/tmp/diff_new_pack.YS1Cfh/_new  2025-01-05 15:31:39.822767581 +0100
@@ -1,5 +1,5 @@
 name: nomino
-version: 1.3.7
-mtime: 1733091401
-commit: 09c178c7f1e1b2da8c86c0966ab70323d138c81d
+version: 1.4.0
+mtime: 1735467616
+commit: ead5cf54967f8e095abeeb30f8cac676ef9b3788
 

++++++ vendor.tar.zst ++++++
/work/SRC/openSUSE:Factory/nomino/vendor.tar.zst 
/work/SRC/openSUSE:Factory/.nomino.new.1881/vendor.tar.zst differ: char 7, line 
1

Reply via email to