Skip to content

Commit 8439c58

Browse files
committed
Bump default ruff version 0.1.1 -> 0.1.2
1 parent 5050125 commit 8439c58

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/project_generator.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ fn build_latest_pre_commit_dependencies(
220220
PreCommitHookVersion {
221221
id: PreCommitHook::Ruff,
222222
repo: "https://github.com/astral-sh/ruff-pre-commit".to_string(),
223-
rev: "v0.1.1".to_string(),
223+
rev: "v0.1.2".to_string(),
224224
},
225225
];
226226

@@ -319,7 +319,7 @@ fn build_latest_dev_dependencies(
319319
},
320320
PythonPackageVersion {
321321
name: "ruff".to_string(),
322-
version: "0.1.1".to_string(),
322+
version: "0.1.2".to_string(),
323323
},
324324
];
325325

@@ -704,7 +704,7 @@ mod tests {
704704
creator_email: "[email protected]".to_string(),
705705
license: LicenseType::Mit,
706706
copyright_year: Some("2023".to_string()),
707-
version: "0.1.1".to_string(),
707+
version: "0.1.2".to_string(),
708708
python_version: "3.11".to_string(),
709709
min_python_version: "3.8".to_string(),
710710
project_manager: ProjectManager::Poetry,
@@ -734,7 +734,7 @@ mypy = "1.6.1"
734734
pre-commit = "3.5.0"
735735
pytest = "7.4.2"
736736
pytest-cov = "4.1.0"
737-
ruff = "0.1.1"
737+
ruff = "0.1.2"
738738
tomli = {version = "2.0.1", python = "<3.11"}"#
739739
.to_string()
740740
}
@@ -746,7 +746,7 @@ mypy = ">=1.6.1"
746746
pre-commit = ">=3.5.0"
747747
pytest = ">=7.4.2"
748748
pytest-cov = ">=4.1.0"
749-
ruff = ">=0.1.1"
749+
ruff = ">=0.1.2"
750750
tomli = {version = ">=2.0.1", python = "<3.11"}"#
751751
.to_string()
752752
}
@@ -757,7 +757,7 @@ mypy==1.6.1
757757
pre-commit==3.5.0
758758
pytest==7.4.2
759759
pytest-cov==4.1.0
760-
ruff==0.1.1
760+
ruff==0.1.2
761761
maturin==1.3.1
762762
-e .
763763
"#
@@ -770,7 +770,7 @@ mypy>=1.6.1
770770
pre-commit>=3.5.0
771771
pytest>=7.4.2
772772
pytest-cov>=4.1.0
773-
ruff>=0.1.1
773+
ruff>=0.1.2
774774
maturin>=1.3.1
775775
-e .
776776
"#
@@ -1119,7 +1119,7 @@ dmypy.json
11191119
hooks:
11201120
- id: mypy
11211121
- repo: https://github.com/astral-sh/ruff-pre-commit
1122-
rev: v0.1.1
1122+
rev: v0.1.2
11231123
hooks:
11241124
- id: ruff
11251125
args: [--fix, --exit-non-zero-on-fix]

0 commit comments

Comments
 (0)